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
bowtie seems to be extremely efficient, i.e. XGALAXY_SLOTS are used the CPU usage is most of the time larger than X*100% (if checked in top). This seems to be because the -p parameter seems to control the number of (additional) alignment threads (probably plus 1 control thread).
Additionally we pipe the result to samtools using potentially GALAXY_SLOTS more slots (in practice most of the time less).
In summary I would suggest to remove the pipes (to the cost of having an additional temporary file.)
The text was updated successfully, but these errors were encountered:
fixesgalaxyproject#5983
by using a pipe bowtie2 and samtools run in parallel. since already
bowtie2 alone uses more CPU than the assigned ones (less that 1 core)
we should not do this, but run them serially.
also properly redirects stderr.
* bowtie2: do not use pipes
fixes#5983
by using a pipe bowtie2 and samtools run in parallel. since already
bowtie2 alone uses more CPU than the assigned ones (less that 1 core)
we should not do this, but run them serially.
also properly redirects stderr.
* fix linting
* remove --no-PG
* restore piping
* reduce number of used threads by one
* Revert "fix linting"
This reverts commit 6e1b4f2.
* bump
* Improve comment wording
Co-authored-by: Wolfgang Maier <[email protected]>
---------
Co-authored-by: Wolfgang Maier <[email protected]>
bowtie
seems to be extremely efficient, i.e.X
GALAXY_SLOTS
are used the CPU usage is most of the time larger thanX
*100% (if checked intop
). This seems to be because the-p
parameter seems to control the number of (additional) alignment threads (probably plus 1 control thread).Additionally we pipe the result to
samtools
using potentiallyGALAXY_SLOTS
more slots (in practice most of the time less).In summary I would suggest to remove the pipes (to the cost of having an additional temporary file.)
The text was updated successfully, but these errors were encountered: