-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
temp file attribute error #9
Comments
hello, the problem is that if not, one workaround would be to install the |
Thanks for the fast response! I just installed python3, so I will change the shebang on your file to: |
both work fine, given that python3 is in |
Great, I think it is working now. Thank you for your help! |
no problem ! glad I could help. |
Hi, apologies that this is probably user error in my
environment,
but when I attempt to run parallel-fastq-dump using this command:parallel-fastq-dump --sra-id SRR1930123 --threads 4 --outdir ./ --split-files --gzip
I get this error (with traceback):
Traceback (most recent call last): File "/usr/bin/parallel-fastq-dump", line 100, in <module> main() File "/usr/bin/parallel-fastq-dump", line 93, in main pfd(args, si, extra_args, n_spots) File "/usr/bin/parallel-fastq-dump", line 12, in pfd tmp_dir = tempfile.TemporaryDirectory(prefix="pfd_",dir=args.tmpdir) AttributeError: 'module' object has no attribute 'TemporaryDirectory'
I'm running this in centos, and I noticed that the shebang of the parallel-fastq-dump script is calling for python2: #!/usr/bin/python2
Is this an error? I installed with pip install, and version is 0.6.2. Thanks for your help!
The text was updated successfully, but these errors were encountered: