Hello community,
I am using snakemake to make a pipeline. I want to add the bowtie2-build from bowtie2 to my current snakefile as follow:
rule bowtie2Build:
input: "refgenome/infected_consensus.fasta"
output: "output/reference"
shell: "bowtie2-build {input} {output}"
So I should be expecting the following files: reference.1.bt2 reference.2.bt2 reference.3.bt2 reference.4.bt2 reference.rev.1.bt2 reference.rev.2.bt2
But it seems the problem lies in the output. How can I write the output?
Hello,
Using the following code:
I get :
Hello,
after each defined output there must be a
,
.fin swimmer
I've updated this in the original (fixed the colon after
params
too). Good catch.Hello So I tried again the suggested code but it seems that the error occurs at the rev. files:
See if those files show up eventually. We usually use
--latency-wait 300
do get around this.This error is due to a simple typo. There should be a dot after "rev":
thanks for the corrections :)