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
The BAM spec has the header size as signed 32 bit int, so it's not possible to have one with more than 2GB of header (because you have so many contigs that it takes that much space). Since it's in the spec, there's nothing to be done about it. However, SNAP just shoves the size into the _int32 field, which can result in a negative offset and a crash (or, if it's big enough, with a positive-but-incorrect offset). It should detect this and exit with a helpful error message.
The text was updated successfully, but these errors were encountered:
The BAM spec has the header size as signed 32 bit int, so it's not possible to have one with more than 2GB of header (because you have so many contigs that it takes that much space). Since it's in the spec, there's nothing to be done about it. However, SNAP just shoves the size into the _int32 field, which can result in a negative offset and a crash (or, if it's big enough, with a positive-but-incorrect offset). It should detect this and exit with a helpful error message.
The text was updated successfully, but these errors were encountered: