📜  samtools 从 bam 文件中提取序列 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:45.681000             🧑  作者: Mango

代码示例1
# Basic syntax:
# For a BAM file:
samtools view file.bam | cut -f 10 > output.txt

# For a SAM file:
cut -f 10 file.sam > output.txt