Agent skill · Data & Analytics

bio-chipseq-qc

ChIP-seq quality control metrics including FRiP (Fraction of Reads in Peaks), cross-correlation analysis (NSC/RSC), library complexity, and IDR (Irreproducibility Discovery Rate) for replicate concordance. Use to assess experiment quality before downstream analysis. Use when assessing ChIP-seq data quality metrics.

FreedomIntelligencegithub.com/FreedomIntelligenceGitHub ↗
claude-codeships scripts
Install
npx skills add FreedomIntelligence/OpenClaw-Medical-Skills --skill bio-chipseq-qc --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 5
SKILL.md size: 11 KB
Bundled scripts: yes
Path: skills/bio-chipseq-qc/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 2,909
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

## Version Compatibility Reference examples tested with: MACS3 3.0+, Subread 2.0+, bedtools 2.31+, deepTools 3.5+, pybedtools 0.9+, pysam 0.22+, samtools 1.19+ Before using code patterns, verify installed versions match. If versions differ: - Python: `pip show <package>` then `help(module.function)` to check signatures - R: `packageVersion('<pkg>')` then `?function_name` to verify parameters - CLI: `<tool> --version` then `<tool> --help` to confirm flags If code throws ImportError, AttributeError, or TypeError, introspect the installed package and adapt the example to match the actual API rather than retrying. # ChIP-seq Quality Control **"Assess the quality of my ChIP-seq experiment"** → Compute FRiP, cross-correlation (NSC/RSC), library complexity, and IDR replicate concordance to evaluate enrichment success. - CLI: `deeptools plotFingerprint`, `phantompeakqualtools run_spp.R` - Python: `pysam` + `pybedtools` for custom QC metrics Quality metrics for assessing ChIP-seq experiment success and replicate reproducibility. ## FRiP (Fraction of Reads in Peaks) **Goal:** Quantify enrichment strength by measuring the proportion of reads falling within called peaks. **Approach:** Count re

What's inside
Steps it walks through
  1. Version Compatibility
  2. FRiP (Fraction of Reads in Peaks)
  3. Calculate FRiP with bedtools
  4. Calculate FRiP with featureCounts
  5. Calculate FRiP with pysam
  6. FRiP Thresholds
  7. Cross-Correlation Analysis (NSC/RSC)
  8. Run phantompeakqualtools
  9. Interpret NSC and RSC
  10. NSC/RSC Thresholds
  11. Plot Cross-Correlation in R
  12. Library Complexity (NRF, PBC1, PBC2)
  13. Calculate with bedtools
  14. Library Complexity Thresholds
Ships with 4 files
  • examples/calculate_frip.sh
  • examples/chipseq_qc.py
  • examples/run_idr.sh
  • usage-guide.md
Commands it runs
Count reads in peaks
Calculate FRiP
echo "FRiP: $frip"
Convert peaks to SAF format
awk 'BEGIN{OFS="\t"} {print $4, $1, $2, $3, "."}' peaks.narrowPeak > peaks.saf
featureCounts -a peaks.saf -F SAF -o peak_counts.txt chip.bam
FRiP from summary
grep -v "^#" peak_counts.txt.summary
Run SPP cross-correlation analysis
Rscript run_spp.R \
More from OpenClaw-Medical-Skills
All skills →
About this skill
What does the bio-chipseq-qc skill do?

ChIP-seq quality control metrics including FRiP (Fraction of Reads in Peaks), cross-correlation analysis (NSC/RSC), library complexity, and IDR (Irreproducibility Discovery Rate) for replicate concordance. Use to assess experiment quality before downstream analysis. Use when assessing ChIP-seq data quality metrics.

How do I install it?

Run `npx skills add FreedomIntelligence/OpenClaw-Medical-Skills --skill bio-chipseq-qc --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From FreedomIntelligence/OpenClaw-Medical-Skills, a repository with 2,909 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going