Skip to content
Snippets Groups Projects
Commit 3631fcbf authored by kdc715's avatar kdc715
Browse files

fix analysis after contamination removal

parent 40d3d502
No related merge requests found
...@@ -52,9 +52,9 @@ if config["SICKLE"]=="no": ...@@ -52,9 +52,9 @@ if config["SICKLE"]=="no":
if config["remove_contamination"]=="yes": if config["remove_contamination"]=="yes":
rule email_unmapped_analysis_no_filtler_after_clean: rule email_unmapped_analysis_no_filtler_after_clean:
input: input:
single=expand("{p}/{s}/single.fastq", p=WORK_DIR, s=SAMPLES), single=expand("{p}/{s}/single_clean.fastq", p=WORK_DIR, s=SAMPLES),
paired1=expand("{p}/{s}/paired.1.fastq", p=WORK_DIR, s=SAMPLES), paired1=expand("{p}/{s}/paired_1_clean.fastq", p=WORK_DIR, s=SAMPLES),
paired2=expand("{p}/{s}/paired.2.fastq", p=WORK_DIR, s=SAMPLES) paired2=expand("{p}/{s}/paired_2_clean.fastq", p=WORK_DIR, s=SAMPLES)
output: output:
notify_file=temp("notify/unmapped_analysis_no_filtler_after_clean.txt") notify_file=temp("notify/unmapped_analysis_no_filtler_after_clean.txt")
params: params:
...@@ -78,9 +78,9 @@ if config["SICKLE"]=="no": ...@@ -78,9 +78,9 @@ if config["SICKLE"]=="no":
rule unmapped_analysis_no_filtler_after_clean: rule unmapped_analysis_no_filtler_after_clean:
input: input:
notify="notify/unmapped_analysis_no_filtler_after_clean.txt", notify="notify/unmapped_analysis_no_filtler_after_clean.txt",
single=expand("{p}/{s}/single.fastq", p=WORK_DIR, s=SAMPLES), single=expand("{p}/{s}/single_clean.fastq", p=WORK_DIR, s=SAMPLES),
paired1=expand("{p}/{s}/paired.1.fastq", p=WORK_DIR, s=SAMPLES), paired1=expand("{p}/{s}/paired_1_clean.fastq", p=WORK_DIR, s=SAMPLES),
paired2=expand("{p}/{s}/paired.2.fastq", p=WORK_DIR, s=SAMPLES) paired2=expand("{p}/{s}/paired_2_clean.fastq", p=WORK_DIR, s=SAMPLES)
output: output:
RESULTS_DIR + "/read_numbers_no_sickle_after_clean.png" RESULTS_DIR + "/read_numbers_no_sickle_after_clean.png"
conda: conda:
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment