agentsclimarketplace

Checksum verification for reproducibility

Skill HolobiomicsLab/asb-skill-collections/collections/epigenomics/v1/skills/checksum-verification-for-reproducibility

Curated, evidence-grounded skill and software-tool collections for scientific AI agents, generated by the AgenticScienceBuilder

Install
npx -y skills add HolobiomicsLab/asb-skill-collections --skill checksum-verification-for-reproducibility

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 14 stars14 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Use when you have executed a complex multi-step processing pipeline (e.g., ENCODE Hi-C uniform processing pipeline) and need to confirm that the generated output files match a known reference baseline.

The file declares its own license as CC-BY-4.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

6.2 KB, ~1.0k tokens by cl100k_base, as published. Nobody here has run it

checksum-verification-for-reproducibility

Summary

Validate that a bioinformatics pipeline produces output that is byte-for-byte identical to reference outputs by computing and comparing cryptographic checksums (file hashes). This skill ensures reproducibility of complex workflows like Hi-C map generation by detecting any divergence in pipeline output due to parameter changes, software versions, or computational environments.

When to use

You have executed a complex multi-step processing pipeline (e.g., ENCODE Hi-C uniform processing pipeline) and need to confirm that the generated output files match a known reference baseline. Use this skill when reproducibility is a project requirement, when validating pipeline porting across compute platforms, or when comparing output from different pipeline versions or parameter sets against a trusted reference.

When NOT to use

  • Output files are expected to differ due to stochastic components (e.g., random initialization, sampling-based algorithms); checksums will never match.
  • Pipeline is under active development or rapid iteration; reference checksums may be outdated or unavailable.
  • You are validating functional correctness rather than byte-for-byte reproducibility; use differential analysis, statistical comparison, or schema validation instead.

Inputs

  • Output file from multi-step processing pipeline (e.g., .hic binary contact map file)
  • Reference output file checksum (computed or provided by pipeline developers)
  • Hash algorithm specification (e.g., SHA-256, MD5)

Outputs

  • Computed checksum string for generated output file
  • Checksum comparison result (match/mismatch)
  • Reproducibility validation report (pass/fail)

How to apply

After running the pipeline (e.g., encode_hic_pipeline on FASTQ input to generate .hic binary files), compute the cryptographic hash (checksum) of the output file using a standard utility such as sha256sum or md5sum. Obtain or compute the corresponding checksum for the reference output file using the same hashing algorithm and on the same file format. Compare the two checksums byte-for-byte; if they match exactly, the pipeline has reproduced the reference output; if they differ, investigate pipeline parameters, software versions, input data provenance, and computational environment variables that may have caused divergence. Document the hashing algorithm and reference checksum as part of the pipeline validation record.

Related tools

  • ENCODE Hi-C uniform processing pipeline (encode_hic_pipeline) (Produces the .hic output file whose checksum is to be verified) — https://github.com/ENCODE-DCC/hic-pipeline
  • Juicer (Underlying pipeline framework for generating Hi-C maps from FASTQ; reference checksums are typically derived from Juicer baseline runs) — https://github.com/aidenlab/juicer
  • sha256sum / md5sum (GNU coreutils for computing cryptographic hashes of output files)

Examples

sha256sum output.hic > output.hic.sha256 && diff output.hic.sha256 reference.hic.sha256 && echo 'Checksum verification passed'

Evaluation signals

  • Computed checksum matches the reference checksum exactly (byte-for-byte equality).
  • Hash comparison is performed using the same hashing algorithm (SHA-256, MD5, etc.) on both generated and reference files.
  • Checksum validation is documented with the algorithm name, reference value, and date of comparison.
  • If checksums diverge, investigate and document the root cause (parameter changes, software version differences, environmental variables) and update reference checksums if the divergence is intentional.
  • Validation passes for all intermediate and final output files specified by the pipeline's reference standard.

Limitations

  • Checksum comparison is sensitive to any byte-level change, including metadata, timestamps, or compression parameters; format equivalence does not guarantee checksum equality.
  • Reference checksums may be unavailable for early-stage or rapidly evolving pipelines; the skill relies on the existence of a stable, documented reference output.
  • Different compute environments (OS, hardware, CUDA version for GPU-accelerated steps, random number generator seeding) may produce outputs with different checksums even if functionally equivalent, particularly for floating-point calculations or GPU-dependent steps.
  • Checksum verification does not validate biological correctness or quality of the output; it only confirms reproducibility against a baseline.

Evidence

  • [other] Validate the output Hi-C map file format (e.g., .hic binary format) and compute checksum or file hash.: "Validate the output Hi-C map file format (e.g., .hic binary format) and compute checksum or file hash."
  • [other] Compare the computed checksum against the ENCODE reference output checksum to confirm pipeline reproducibility and correctness.: "Compare the computed checksum against the ENCODE reference output checksum to confirm pipeline reproducibility and correctness."
  • [readme] Juicer is a platform for analyzing kilobase resolution Hi-C data. In this distribution, we include the pipeline for generating Hi-C maps from fastq raw data files: "Juicer is a platform for analyzing kilobase resolution Hi-C data. In this distribution, we include the pipeline for generating Hi-C maps from fastq raw data files"

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.