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
bin3C imposes on the user that input BAMs are query name sorted. This makes pair matching trivial and low memory. However, when it comes to invoking bin3C extract -f bam ..., a coordinate sorted and indexed BAM would be much faster to process.
Fix
We should inspect the BAM for ordering and adapt the parsing logic from iterating over the entire input BAM (ie fetch(until_eof=True)) to iterating over the involved references and fetching alignments.
ie
forref_nameincluster:
foralninfetch(ref_name):
# do something
The text was updated successfully, but these errors were encountered:
bin3C imposes on the user that input BAMs are query name sorted. This makes pair matching trivial and low memory. However, when it comes to invoking
bin3C extract -f bam ...
, a coordinate sorted and indexed BAM would be much faster to process.Fix
We should inspect the BAM for ordering and adapt the parsing logic from iterating over the entire input BAM (ie
fetch(until_eof=True)
) to iterating over the involved references and fetching alignments.ie
The text was updated successfully, but these errors were encountered: