We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I noticed in ENCFF659AUS that the header tag has duplicate sorting order (SO) fields.
SO
$ samtools view --header-only https://www.encodeproject.org/files/ENCFF659AUS/@@download/ENCFF659AUS.bam | head -1 @HD VN:1.4 SO:coordinate SO:coordinate
While this is undefined in the specified SAM version (1.4), it should be noted that it is illegal in SAM 1.6:
Within each (non-@CO) header line, no field tag may appear more than once and the order in which the fields appear is not significant.
@CO
This issue is caused by --outSAMheaderHD including the SO field and --outSAMtype being set to SortedByCoordinate, which causes STAR to indiscriminately duplicate the field.
--outSAMheaderHD
--outSAMtype
SortedByCoordinate
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I noticed in ENCFF659AUS that the header tag has duplicate sorting order (
SO
) fields.$ samtools view --header-only https://www.encodeproject.org/files/ENCFF659AUS/@@download/ENCFF659AUS.bam | head -1 @HD VN:1.4 SO:coordinate SO:coordinate
While this is undefined in the specified SAM version (1.4), it should be noted that it is illegal in SAM 1.6:
This issue is caused by
--outSAMheaderHD
including theSO
field and--outSAMtype
being set toSortedByCoordinate
, which causes STAR to indiscriminately duplicate the field.The text was updated successfully, but these errors were encountered: