Skip to content

Commit

Permalink
disable multithreading in fastq-dump
Browse files Browse the repository at this point in the history
  • Loading branch information
luizirber committed May 30, 2020
1 parent 1fb4a9f commit 4d0d29a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.7.1-slim-stretch
FROM python:3.8.3-slim-buster

RUN groupadd user && \
useradd --create-home --home-dir /home/user -g user -s /bin/bash user
Expand Down
2 changes: 1 addition & 1 deletion wort/blueprints/compute/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def compute(sra_id):
with NamedTemporaryFile("w+b") as f:
try:
shell(
"fastq-dump --fasta 0 --skip-technical --readids --read-filter pass --dumpbase --clip --split-e -Z {sra_id} | "
"fastq-dump --disable-multithreading --fasta 0 --skip-technical --readids --read-filter pass --dumpbase --clip --split-e -Z {sra_id} | "
"sourmash compute -k 21,31,51 "
" --scaled 1000 "
" --track-abundance "
Expand Down

0 comments on commit 4d0d29a

Please sign in to comment.