Agent skill

bio-rna-quantification-alignment-free-quant

Quantify transcript expression using pseudo-alignment with Salmon or kallisto. Use when quantifying transcripts with Salmon or kallisto.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill alignment-free-quant --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 5 KB
Bundled scripts: none
Path: skills/analysis/alignment-free-quant/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

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

From the SKILL.md

# Alignment-Free Quantification Quantify transcript abundance directly from FASTQ reads using pseudo-alignment (kallisto) or selective alignment (Salmon). ## Salmon Workflow ### Build Index ```bash # Download transcriptome FASTA # Ensembl: Homo_sapiens.GRCh38.cdna.all.fa.gz # Basic index (fast, less accurate) salmon index -t transcripts.fa -i salmon_index # Decoy-aware index (recommended for accuracy) # First, create decoys from genome grep "^>" genome.fa | cut -d " " -f 1 | sed 's/>//g' > decoys.txt cat transcripts.fa genome.fa > gentrome.fa salmon index -t gentrome.fa -d decoys.txt -i salmon_index -p 8 ``` ### Quantify Samples ```bash # Paired-end reads salmon quant -i salmon_index -l A \ -1 sample_R1.fastq.gz -2 sample_R2.fastq.gz \ -o sample_quant -p 8 # Single-end reads salmon quant -i salmon_index -l A \ -r sample.fastq.gz \ -o sample_quant -p 8 ``` **Key flags:** - `-l A` - Automatically detect library type - `-p` - Number of threads - `--validateMappings` - More accurate (default in recent versions) - `--gcBias` - Correct for GC bias - `--seqBias` - Correct for sequence-specific bias ### Library Types | Code | Description | |------|-------------| | `A` | Automatic detection

What's inside
Steps it walks through
  1. Salmon Workflow
  2. Build Index
  3. Quantify Samples
  4. Library Types
  5. Batch Processing
  6. Output Files
  7. kallisto Workflow
  8. Salmon vs kallisto
  9. Combining Results
  10. Quality Checks
  11. Common Issues
  12. Related Skills
Ships with 1 file
  • metadata.json
Commands it runs
Download transcriptome FASTA
Basic index (fast, less accurate)
salmon index -t transcripts.fa -i salmon_index
Decoy-aware index (recommended for accuracy)
grep "^>" genome.fa | cut -d " " -f 1 | sed 's/>//g' > decoys.txt
cat transcripts.fa genome.fa > gentrome.fa
salmon index -t gentrome.fa -d decoys.txt -i salmon_index -p 8
Paired-end reads
salmon quant -i salmon_index -l A \
Single-end reads
More from claude-skill-registry
All skills →
About this skill
What does the bio-rna-quantification-alignment-free-quant skill do?

Quantify transcript expression using pseudo-alignment with Salmon or kallisto. Use when quantifying transcripts with Salmon or kallisto.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill alignment-free-quant --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 majiayu000/claude-skill-registry, a repository with 534 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