Agent skill · AI & Agents

bio-tools

Biology research tools reference. Always available inside agent containers.

BioTender-maxgithub.com/BioTender-maxGitHub ↗
claude-codeships scriptsNOASSERTION
Install
npx skills add BioTender-max/awesome-bio-agent-skills --skill bio-tools --agent claude-code

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

Facts
Files in the skill folder: 4
SKILL.md size: 7 KB
Bundled scripts: yes
Path: skills/bioclaw/bio-tools/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 135
Language: Python

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

From the SKILL.md

# Bio Tools Reference You are running inside a BioClaw container with the following biology tools pre-installed. **Layout:** Runnable plot/PyMOL scripts live under `templates/` (synced to `/home/node/.claude/skills/bio-tools/templates/`). ## Quick Reference ### Sequence Search ```bash # Nucleotide BLAST blastn -query input.fa -subject ref.fa -outfmt 6 -evalue 1e-5 # Protein BLAST blastp -query protein.fa -subject ref_protein.fa -outfmt 6 # Translate then search blastx -query nucleotide.fa -subject protein_db.fa -outfmt 6 ``` ### Read Alignment ```bash # Index reference bwa index reference.fa # Align short reads bwa mem reference.fa reads_R1.fq reads_R2.fq > aligned.sam # Long reads minimap2 -a reference.fa long_reads.fq > aligned.sam # SAM to sorted BAM samtools view -bS aligned.sam | samtools sort -o sorted.bam samtools index sorted.bam ``` ### Quality Control ```bash # FastQC report fastqc reads.fq -o qc_output/ # FASTA/FASTQ stats seqtk comp reads.fq | head seqtk size reads.fq ``` ### Genome Arithmetic ```bash # Intersect two BED files bedtools intersect -a regions.bed -b features.bed # Coverage bedtools coverage -a regions.bed -b aligned.bam # Get FASTA from BED regions bedtool

What's inside
Steps it walks through
  1. Quick Reference
  2. Sequence Search
  3. Read Alignment
  4. Quality Control
  5. Genome Arithmetic
  6. Python Quick Recipes
  7. Important Notes
  8. Reusable Figure Templates
  9. Volcano Plot Template
  10. QC Summary Plot Template
  11. PyMOL Render Template
  12. Inline Plot Snippets (Heatmap, PCA, Bar)
  13. Publication-Ready Plots (cnsplots)
  14. Genome Browser Tracks (pyGenomeTracks)
Ships with 3 files
  • templates/pymol_render_template.py
  • templates/qc_summary_plot_template.py
  • templates/volcano_plot_template.py
Commands it runs
Nucleotide BLAST
blastn -query input.fa -subject ref.fa -outfmt 6 -evalue 1e-5
Protein BLAST
blastp -query protein.fa -subject ref_protein.fa -outfmt 6
Translate then search
blastx -query nucleotide.fa -subject protein_db.fa -outfmt 6
Index reference
bwa index reference.fa
Align short reads
bwa mem reference.fa reads_R1.fq reads_R2.fq > aligned.sam
More from awesome-bio-agent-skills
All skills →
About this skill
What does the bio-tools skill do?

Biology research tools reference. Always available inside agent containers.

How do I install it?

Run `npx skills add BioTender-max/awesome-bio-agent-skills --skill bio-tools --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 BioTender-max/awesome-bio-agent-skills, a repository with 135 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