I am using Snakemake and enaDataGet to download several fastq files concurrently from a project (namely PRJEB9586) instead of using enaGroupGet. However I get the following error:
FileNotFoundError: [Errno 2] No such file or directory: 'PRJEB9586/temp.txt'
I believe this is the block of code from python3/readGet.py that messes things up:
Because my Snakemake pipeline is running concurrently, there are several processes creating and deleting this temp.txt file, which is causing the error. Can this be fixed, possibly by using Python's tempfile library?
I am using Snakemake and
enaDataGet
to download several fastq files concurrently from a project (namely PRJEB9586) instead of usingenaGroupGet
. However I get the following error:FileNotFoundError: [Errno 2] No such file or directory: 'PRJEB9586/temp.txt'
I believe this is the block of code from
python3/readGet.py
that messes things up:Because my Snakemake pipeline is running concurrently, there are several processes creating and deleting this
temp.txt
file, which is causing the error. Can this be fixed, possibly by using Python'stempfile
library?