Use when doing lightweight FASTA/FASTQ transformations such as conversion, subsampling, subsequence extraction, trimming, or quick QC with seqtk.
seqtk <subcommand> .../home/vimalinx/miniforge3/envs/bio/bin/seqtkreferences/help.mdseqtk for small, surgical sequence manipulations rather than full-blown alignment or variant tooling.# 1) Convert FASTQ to FASTA
seqtk seq -A reads.fq.gz > reads.fa
# 2) Subsample reads reproducibly
seqtk sample -s100 reads.fq.gz 100000 > reads.subset.fq
# 3) Extract named regions or sequences
seqtk subseq genome.fa regions.bed > subset.fa
# 4) Trim low-quality FASTQ ends
seqtk trimfq reads.fq.gz > reads.trimmed.fq
seq for format conversion, sample for downsampling, subseq for extraction, trimfq for simple trimming, or fqchk for quick QC.seqtk as a stream-oriented filter and redirect output explicitly.seqtk does not use global --help or --version flags; run it without arguments or use the specific subcommand help patterns instead.subseq is convenient, but if you only need a few genomic intervals from a large indexed FASTA, samtools faidx may be a better fit.