This is a test version of Biostars. For the public version, visit https://www.biostars.org.
samtools sort: truncated file. Aborting

Hi, I got an error by using this the below command:

samtools sort -O SAM -n -@ 2 -o OZBenth2_.fastp.fq.gz.name-sorted.sam OZBenth2_.fastp.fq.gz.sam 
[W::sam_read1] Parse error at line 1
samtools sort: truncated file. Aborting

What did I miss?

Thank you in advance,

samtools alignment picard

1 answer

Samtools expect a bam file and you have proivided a sam file (see usage below).

Usage: samtools sort [options...] [in.bam]

So, first try converting sam to bam.

samtools view -bS OZBenth2_.fastp.fq.gz.sam > OZBenth2_.fastp.fq.gz.bam

Thank you, do you think java -jar picard.jar SortSam I=input.sam O=sorted.samSORT_ORDER=coordinat would be slower?

Log in to answer this question.