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 qualimap tool sorts the input bam file by read-name and does so in a single-threaded manner. On a dataset that I'm using, the total execution time of the tool is around 85 mins. However, if we perform the sorting via samtools and then call qualimap on this (with the additional flag --sorted), the execution time drops to around 33 mins. Combined with the 7 mins it took for sorting (with 16 threads), the total execution time for the workflow reduces to less than half its original time.
If this change is fine, I could go ahead and implement it. Thanks!
The text was updated successfully, but these errors were encountered:
Description of feature
The
qualimap
tool sorts the input bam file by read-name and does so in a single-threaded manner. On a dataset that I'm using, the total execution time of the tool is around 85 mins. However, if we perform the sorting viasamtools
and then callqualimap
on this (with the additional flag--sorted
), the execution time drops to around 33 mins. Combined with the 7 mins it took for sorting (with 16 threads), the total execution time for the workflow reduces to less than half its original time.If this change is fine, I could go ahead and implement it. Thanks!
The text was updated successfully, but these errors were encountered: