Agent skill · Data & Analytics

bio-read-qc-fastp-workflow

All-in-one read preprocessing with fastp including adapter trimming, quality filtering, deduplication, base correction, and HTML report generation. Use when preprocessing Illumina data and wanting a single fast tool instead of separate Cutadapt, Trimmomatic, and FastQC steps.

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

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

Facts
Files in the skill folder: 3
SKILL.md size: 7 KB
Bundled scripts: yes
Path: skills/bio-read-qc-fastp-workflow/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: FastQC 0.12+, fastp 0.23+ Before using code patterns, verify installed versions match. If versions differ: - Python: `pip show <package>` then `help(module.function)` to check signatures - 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. # fastp Workflow All-in-one preprocessing tool that handles adapter trimming, quality filtering, deduplication, and report generation in a single pass. **"Preprocess FASTQ reads with fastp"** → Run adapter trimming, quality filtering, and QC reporting in a single pass. - CLI: `fastp -i R1.fq -I R2.fq -o clean_R1.fq -O clean_R2.fq --html report.html` ## Basic Usage ### Single-End ```bash fastp -i input.fastq.gz -o output.fastq.gz ``` ### Paired-End ```bash fastp -i R1.fastq.gz -I R2.fastq.gz -o R1_clean.fastq.gz -O R2_clean.fastq.gz ``` ### With Custom HTML/JSON Reports ```bash fastp -i R1.fq.gz -I R2.fq.gz \ -o R1_clean.fq.gz -O R2_clean.fq.gz \ -h sample_report.html \ -j sample_report.json ``` ## Adapter Trimming fastp aut

What's inside
Steps it walks through
  1. Version Compatibility
  2. Basic Usage
  3. Single-End
  4. Paired-End
  5. With Custom HTML/JSON Reports
  6. Adapter Trimming
  7. Quality Filtering
  8. Quality Trimming
  9. Length Filtering
  10. Poly-X Trimming
  11. N Base Handling
  12. Deduplication
  13. Base Correction (Paired-End Only)
  14. Paired-End Merge
Ships with 2 files
  • examples/fastp_pipeline.sh
  • usage-guide.md
Commands it runs
fastp -i input.fastq.gz -o output.fastq.gz
fastp -i R1.fastq.gz -I R2.fastq.gz -o R1_clean.fastq.gz -O R2_clean.fastq.gz
fastp -i R1.fq.gz -I R2.fq.gz \
Auto-detect (default)
fastp -i in.fq -o out.fq
Specify adapters manually
fastp -i in.fq -o out.fq \
Paired-end with manual adapters
fastp -i R1.fq -I R2.fq -o R1.out.fq -O R2.out.fq \
Disable adapter trimming
More from OpenClaw-Medical-Skills
All skills →
About this skill
What does the bio-read-qc-fastp-workflow skill do?

All-in-one read preprocessing with fastp including adapter trimming, quality filtering, deduplication, base correction, and HTML report generation. Use when preprocessing Illumina data and wanting a single fast tool instead of separate Cutadapt, Trimmomatic, and FastQC steps.

How do I install it?

Run `npx skills add FreedomIntelligence/OpenClaw-Medical-Skills --skill bio-read-qc-fastp-workflow --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