SnakeMake: MissingRuleException
1
1
Entering edit mode
18 months ago
Alessandro ▴ 10

Hi, I am trying to learn snakemake and I don't know why I'm getting this error: I set a Sankefile with the following lines:

rule overlapping:
    input:
        "../ApJa_bowtie_sorted.bam"
    output:
        "./ApJa_overlap_25_30_{sample}"
    shell:
        "python ../../overlapping_reads.py --input {input} --minquery 25 --maxquery 30 --mintarget 25 --maxtarget 30 --overlap {wildcards.sample} --output {output}"

But if I launch snakemake I get this error

$ snakemake  -s Snakefile --cores 20 ApJa_overlap_25_30_4 ApJa_overlap_25_30_5
Building DAG of jobs...
MissingRuleException:
No rule to produce ApJa_overlap_25_30_5 (if you use input functions make sure that they don't raise unexpected exceptions).

My goal would be to launch the python script with different settings in parallel:

python ../../overlapping_reads.py --input ../ApJa_bowtie_sorted.bam --minquery 25 --maxquery 30 --mintarget 25 --maxtarget 30 --overlap 4 --output ApJa_overlap_25_30_4

python ../../overlapping_reads.py --input ../ApJa_bowtie_sorted.bam --minquery 25 --maxquery 30 --mintarget 25 --maxtarget 30 --overlap 5 --output ApJa_overlap_25_30_5
snakemake • 885 views
ADD COMMENT
2
Entering edit mode
18 months ago

I think

output:
        "./ApJa_overlap_25_30_{sample}"

should be:

output:
        "ApJa_overlap_25_30_{sample}"

so it matches the files you request on the command line.

ADD COMMENT

Login before adding your answer.

Traffic: 1429 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6