Skip to content

Commit

Permalink
amke long_read.fastq.gz a tempfile
Browse files Browse the repository at this point in the history
  • Loading branch information
rhysnewell committed Sep 7, 2023
1 parent 19b803b commit 6d07583
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aviary/modules/quality_control/qc.smk
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ rule link_reads:
params:
coassemble = config["coassemble"]
output:
"data/long_reads.fastq.gz"
temp("data/long_reads.fastq.gz")
threads:
config['max_threads']
run:
Expand All @@ -37,7 +37,7 @@ rule filtlong_no_reference:
input:
long = config['long_reads']
output:
long = "data/long_reads.fastq.gz",
long = temp("data/long_reads.fastq.gz"),
params:
min_length = config['min_long_read_length'],
keep_percent = config['keep_percent'],
Expand Down

0 comments on commit 6d07583

Please sign in to comment.