Hello,
I have lots of unsorted BAM files and the sorting process is very slow. One solution I could think of was to run multiple instances of samtools:
cat files.txt | xargs -n 1 -P $num_threads samtools sort
The problem is that this method is I/O bound. Are there any (free) faster alternatives?
Should I try novosort?
Cheers
GH
I have lots of unsorted BAM files and the sorting process is very slow. One solution I could think of was to run multiple instances of samtools:
cat files.txt | xargs -n 1 -P $num_threads samtools sort
The problem is that this method is I/O bound. Are there any (free) faster alternatives?
Should I try novosort?
Cheers
GH
Comment