-
Notifications
You must be signed in to change notification settings - Fork 12
Error when run pipeline with docker file #28
Comments
Hi @Ritzttk, You have two problems here. The first you correctly diagnosed and fixed, is the missing docker image tag. This is resolved in #30 by essentially doing what you did above - removing the After this, you have a warning that I've not seen before:
Though this doesn't seem to be a blocking problem. Maybe @pditommaso has seen this before? Then you also have a python error from the Traceback (most recent call last):
File "/opt/conda/bin/decont.py", line 449, in <module>
assert shutil.which('bwa') and shutil.which('samtools')
AttributeError: 'module' object has no attribute 'which' A quick bit of googling suggests that this is because the version of Python is too old. I've just specified Python 3.6 in the conda environment file (also in #30), hopefully this will solve the problem. Phil |
Never seen, but googling for it, it may be a problem with your docker version or the base image. |
Hi @Ritzttk, The new Docker hub image is now building. Hopefully when it's done the Cheers, Phil |
Hi @ewels , Kiên |
- Added test profile and activated in travis.yaml - Added name to license (closes nf-core#25) - Fixed container version tagging (closes nf-core#28) - Upgraded Nextflow version dep - deleted test-data dir (now in nf-core testdata repo) - Fixed all nf-core lint problems (closes nf-core#10) - Contamination index now mandatory (closes nf-core#8) - Upgraded most programs (env.yaml) - Enabled --reads input (rather than just via params-file) Please enter the commit message for your changes. Lines starting
Hi, when I ran this command :
I met this error:
After that, I think I have prolem with the url of docker, So I edited the nextflow.config from
container = "nfcore/vipr:${version}" // for GIS translated into conda env name!
to
container = "nfcore/vipr
So the pipeline worked on first process. But it error on the second process
I think, i had problem with the docker file. Do you recommend I will use docker or using conda for software dependencies ?.
Kiên
The text was updated successfully, but these errors were encountered: