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
Genomes with contigs larger than 2GB cause unpredictable errors/crashes due to the core GSeg data structure using 32bit unsigned int (the unsigned part doesn't help with consistently increasing the limit to 4GB due to inevitable signed int arithmetic).
GFaSeqGet is likely the first to cause a failure in gffread so it needs to be migrated to 64bit coordinates at the same time.
This requires gffread/gffcompare updates as well.
Proper tests should be written for these gff parsing and GFaSeqGet on small and large genomes.
The text was updated successfully, but these errors were encountered:
Genomes with contigs larger than 2GB cause unpredictable errors/crashes due to the core GSeg data structure using 32bit unsigned int (the unsigned part doesn't help with consistently increasing the limit to 4GB due to inevitable signed int arithmetic).
GFaSeqGet is likely the first to cause a failure in gffread so it needs to be migrated to 64bit coordinates at the same time.
This requires gffread/gffcompare updates as well.
Proper tests should be written for these gff parsing and GFaSeqGet on small and large genomes.
The text was updated successfully, but these errors were encountered: