Skip to content

Commit

Permalink
Compress fastpq
Browse files Browse the repository at this point in the history
  • Loading branch information
tdayris committed Jul 16, 2024
1 parent b89611b commit ae7480b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 4.1.0

## Features:

* Fastp output compressed

# 4.0.0

## Features:
Expand Down
4 changes: 2 additions & 2 deletions workflow/rules/fastp.smk
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ rule fair_bowtie2_mapping_fastp_trimming_pair_ended:
output:
trimmed=temp(
expand(
"tmp/fair_bowtie2_mapping_fastp_trimming_pair_ended/{sample}.{stream}.fastq",
"tmp/fair_bowtie2_mapping_fastp_trimming_pair_ended/{sample}.{stream}.fastq.gz",
stream=stream_tuple,
allow_missing=True,
)
Expand Down Expand Up @@ -64,7 +64,7 @@ use rule fair_bowtie2_mapping_fastp_trimming_pair_ended as fair_bowtie2_mapping_
],
output:
trimmed=temp(
"tmp/fair_bowtie2_mapping_fastp_trimming_single_ended/{sample}.fastq"
"tmp/fair_bowtie2_mapping_fastp_trimming_single_ended/{sample}.fastq.gz"
),
html=report(
"results/QC/report_se/{sample}.html",
Expand Down

0 comments on commit ae7480b

Please sign in to comment.