💾 Archived View for freeshell.de › tldr › samtools.gmi captured on 2022-06-04 at 00:25:59. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2022-04-28)
-=-=-=-=-=-=-
Tools for handling high-throughput sequencing (genomics) data.
Used for reading/writing/editing/indexing/viewing of data in SAM/BAM/CRAM format.
samtools view -S -b {input.sam} > {output.bam}
{other_command} | samtools view -h - chromosome:start-end
samtools sort {input} -o {output.bam}
samtools index {sorted_input.bam}
samtools flagstat {sorted_input}
samtools idxstats {sorted_indexed_input}
samtools merge {output} {input1 input2 …}
samtools split {merged_input}
Copyright © 2014—present the tldr-pages team and contributors.
This work is licensed under the Creative Commons Attribution 4.0 International License (CC-BY).