I cloned the dna-seq-gatk-variant-calling workflow on a cluster and I am getting the following error when I try to launch snakemake:
Building DAG of jobs...
WorkflowError:
Failed to open environment file https://github.com/snakemake/snakemake-wrappers/raw/0.30.0/bio/trimmomatic/pe/environment.yaml:
URLError: <urlopen error [Errno 110] Connection timed out>
I did the following steps:
Clone the repo
Filled the *.tsv files and the config file with the correct infos for the run
Test using snakemake -np. Everything is OK at this step.
The jobs are submitted correctly to the cluster, but they crash after a few minutes. In the logs, I find the error message I pasted at the beginning of this issue.
I was under the impression that the wrappers were downloaded before launching the jobs, but it does not appear to be the case.
I then tried to clone the snakemake-wrappers repo and link it directly with the --wrapper-prefix parameter using the git+file://path/to/your/local/clone@ as mentioned in the doc. I get the following error:
ValueError in line 12 of /lustre04/scratch/jolybeau/LO/LO_genotypage/dna-seq-gatk-variant-calling/rules/mapping.smk:
too many values to unpack (expected 2)
File "./dna-seq-gatk-variant-calling/Snakefile", line 16, in <module>
File "./dna-seq-gatk-variant-calling/rules/mapping.smk", line 12, in <module>
I'm not sure what I am doing wrong. Could you please help me with this problem?
Hello,
I cloned the dna-seq-gatk-variant-calling workflow on a cluster and I am getting the following error when I try to launch snakemake:
I did the following steps:
snakemake -np
. Everything is OK at this step.The jobs are submitted correctly to the cluster, but they crash after a few minutes. In the logs, I find the error message I pasted at the beginning of this issue.
I was under the impression that the wrappers were downloaded before launching the jobs, but it does not appear to be the case.
I then tried to clone the snakemake-wrappers repo and link it directly with the
--wrapper-prefix
parameter using thegit+file://path/to/your/local/clone@
as mentioned in the doc. I get the following error:I'm not sure what I am doing wrong. Could you please help me with this problem?
Charles.