bio-alignment-io
Read, write, and convert multiple sequence alignment files using Biopython Bio.AlignIO. Supports Clustal, PHYLIP, Stockholm, FASTA, Nexus, a…
Maintainer K-Dense Inc. · Last updated April 1, 2026
Pysam is a Python module for reading, manipulating, and writing genomic datasets. Read/write SAM/BAM/CRAM alignment files, VCF/BCF variant files, and FASTA/FASTQ sequences with a Pythonic interface to htslib. Query tabix-indexed files, perform pileup analysis for coverage, and execute samtools/bcftools commands.
Original source
https://github.com/K-Dense-AI/claude-scientific-skills/tree/main/scientific-skills/pysam
Skill Snapshot
Source Doc
This skill should be used when:
Read alignment file:
import pysam
## Open VCF file and iterate variants
vcf = pysam.VariantFile("variants.vcf")
for variant in vcf:
print(f"{variant.chrom}:{variant.pos} {variant.ref}>{variant.alts}")
vcf.close()
python
Related skills
Read, write, and convert multiple sequence alignment files using Biopython Bio.AlignIO. Supports Clustal, PHYLIP, Stockholm, FASTA, Nexus, a…
FlowIO is a lightweight Python library for reading and writing Flow Cytometry Standard (FCS) files. Parse FCS metadata, extract event data,…
Guide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical s…
Systematic top-down workflow for polishing academic papers. Structure to logic to expression with user confirmation at each step.