Skip to content

Commit

Permalink
[mg] hotfix - reverted to pipe and trim_tail was incorrectly set
Browse files Browse the repository at this point in the history
  • Loading branch information
magodfroid committed Oct 26, 2023
1 parent fca7dda commit 0b47a08
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions workflow/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ rule all:

if common_config["platform"] =="TempO-Seq":
length_required_fastp = 50
trim_tail1_fastp = 0
trim_tail1_fastp = 1
else:
length_required_fastp = 36
trim_tail1_fastp = 0
Expand All @@ -85,7 +85,7 @@ rule fastp_se:
input:
R1 = ancient(str(raw_dir / "{sample}.fastq.gz"))
output:
R1 = temp(trim_dir / "{sample}.fastq.gz"),
R1 = pipe(trim_dir / "{sample}.fastq.gz"),
json = trim_dir / "{sample}_fastp.json",
html = trim_dir / "{sample}_fastp.html"
conda:
Expand Down Expand Up @@ -129,8 +129,8 @@ rule fastp_pe:
R1 = ancient(str(raw_dir / "{sample}.R1.fastq.gz")),
R2 = ancient(str(raw_dir / "{sample}.R2.fastq.gz"))
output:
R1 = temp(trim_dir / "{sample}.R1.fastq.gz"),
R2 = temp(trim_dir / "{sample}.R2.fastq.gz"),
R1 = pipe(trim_dir / "{sample}.R1.fastq.gz"),
R2 = pipe(trim_dir / "{sample}.R2.fastq.gz"),
json = trim_dir / "{sample}_fastp.json",
html = trim_dir / "{sample}_fastp.html"
conda:
Expand Down

0 comments on commit 0b47a08

Please sign in to comment.