You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the original file is sorted by queryname why does it outputs is sorted: 0?
From the output, it seems that COV and GCD are only supported if sorted by coordinate; if so, shouldn't they just be omitted from the output? According to the docs: Not all sections will be reported as some depend on the data being coordinate sorted while others are only present when specific barcode tags are in use.
The text was updated successfully, but these errors were encountered:
Yes, "is sorted" should really be "is coordinate sorted". Note that the value written comes from inspecting the alignment records to check they're in the expected order; samtools stats does not believe the SO: tag. And you're correct, COV and GCD need the data to be coordinate sorted, so they shouldn't be printed if the alignments were not in the required order.
Are you using the latest version of samtools and HTSlib? If not, please specify.
Please describe your environment.
Linux 4.18.0-553.16.1.el8_10.x86_64
x86_64
Please specify the steps taken to generate the issue, the command you are running and the relevant output.
The input file is
queryname
sorted:If I run
samtools stats
on the above file (below left) or after sorting bycoordinate
(below right), I get slightly different outptus:queryname
why does it outputsis sorted: 0
?COV
andGCD
are only supported if sorted by coordinate; if so, shouldn't they just be omitted from the output? According to the docs:Not all sections will be reported as some depend on the data being coordinate sorted while others are only present when specific barcode tags are in use.
The text was updated successfully, but these errors were encountered: