-
Notifications
You must be signed in to change notification settings - Fork 788
Open
Labels
Description
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 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!