samtools view run into "uninterruptible sleep" status
Hi all:
I try to run ten samtools view jobs simultaneously, and found that most of them usually change from "R" to "D" when examined by the top cmd. Do you think it is nothing strange since I submit too much jobs? The %cpu and %mem seemed to be quite normal.
Thanks in advance!
Best
• 2,040 views
•
link
0 answers
No answers yet.
Log in to answer this question.
That won't be CPU or memory bound, it's IO limited. Unless you have only solid state hard drives it's unlikely that you can effectively use more than a few instances at once. Note also that the compression part can be multithreaded (the
-@option).Thanks you!