Skip to content
Snippets Groups Projects
Commit 2714dfbc authored by seehagec01's avatar seehagec01
Browse files

IVA produziert contigs für 3/6 samples

parent 5888ef2f
No related branches found
No related tags found
No related merge requests found
...@@ -3,13 +3,13 @@ rule IVA: ...@@ -3,13 +3,13 @@ rule IVA:
"results/unmapped_fastq/{sample}_1_unmapped.fastq", "results/unmapped_fastq/{sample}_1_unmapped.fastq",
"results/unmapped_fastq/{sample}_2_unmapped.fastq" "results/unmapped_fastq/{sample}_2_unmapped.fastq"
output: output:
"results/IVA/{sample}" "results/IVA/{sample}/"
log: log:
"workflow/report/IVA/{sample}.log" "workflow/report/IVA/{sample}.log"
threads:20 #threads:20
conda: conda:
"../envs/yourenv.yaml" "../envs/yourenv.yaml"
shell: shell:
"iva --threads {threads} -f {input[0]} -r {input[1]} {output} 2> {log}" "iva -f {input[0]} -r {input[1]} {output} 2> {log}"
\ No newline at end of file
...@@ -5,9 +5,10 @@ samples = pd.read_table(config["samples"], index_col="sample") ...@@ -5,9 +5,10 @@ samples = pd.read_table(config["samples"], index_col="sample")
rule all: rule all:
input: input:
"results/krakendb/db", #"results/krakendb/db"
expand("results/kraken/{sample}_report.txt", sample=samples.index) #"results/kraken/ERR4181713_report.txt"
#expand("results/IVA/{sample}", sample=samples.index) #expand("results/kraken/{sample}_report.txt", sample=samples.index)
expand("results/IVA/{sample}", sample=samples.index)
include: "rules/fastp.smk" include: "rules/fastp.smk"
include: "rules/bowtie2.smk" include: "rules/bowtie2.smk"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment