Open tinahuang222 opened 4 years ago
Hi, I have never encountered this error before... Are you still encountering it? I can think of a workaround but it will get ugly...
Maybe this is a problem with nextflow version
I fixed this bug by modifying nextflow.config as follows:
env { PYTHONPATH = "$PWD/src_RealData:\$PYTHONPATH" }
Hi,
I had the exact same issue as @tinahuang222.
I fixed it by modifying nextflow.config not with this spelling:
env { PYTHONPATH = "$PWD/src_RealData:\$PYTHONPATH" }
, leading to a new error,
but with this one:
env { PYTHONPATH = "$PWD/src_RealData:$PYTHONPATH" }
Hi,
Thanks for your input. Are you still have any problems?
Hi,
When I tried to rerun your code in bash,
nextflow run dummydataset.nf --epoch 10 -c nextflow.config -resume
It fails the nextflow.config due to unknown config attribute
PYTHONPATH
Have you ever encountered such bug?