Skip to content

Commit 8234249

Browse files
committed
removing bash setting typo
1 parent 3e73aa7 commit 8234249

File tree

2 files changed

+14
-10
lines changed

2 files changed

+14
-10
lines changed

modules/seqkit.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ process SORT_AND_COMPRESS_TO_FASTA {
1616
script:
1717
barcode = file(reads).getSimpleName()
1818
"""
19-
set -eou pipefile
19+
set -eou pipefail
2020
2121
mkdir -p tmp
2222

nextflow.config

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -139,18 +139,18 @@ params {
139139
// nextclade dataset
140140
nextclade_dataset = null
141141

142-
// Dataset, either a local FASTA file or a pre-built dataset built by Sylph, to use
143-
// for metagenomic profiling
144-
meta_ref = null
142+
// Dataset, either a local FASTA file or a pre-built dataset built by Sylph, to use
143+
// for metagenomic profiling
144+
meta_ref = null
145145

146-
// Contamination FASTA dataset to scrub from reads
147-
contam_fasta = null
146+
// Contamination FASTA dataset to scrub from reads
147+
contam_fasta = null
148148

149-
// K-mer size to use for metagenomic sketching
150-
k = 31
149+
// K-mer size to use for metagenomic sketching
150+
k = 31
151151

152-
// devider haplotype phasing preset
153-
devider_preset = "nanopore-r10" // old-long-reads, nanopore-r9, nanopore-r10, hi-fi
152+
// devider haplotype phasing preset
153+
devider_preset = "nanopore-r10" // old-long-reads, nanopore-r9, nanopore-r10, hi-fi
154154

155155
// nextclade dataset cache
156156
nextclade_cache = "$launchDir/work/nextclade_datasets"
@@ -161,6 +161,10 @@ params {
161161
// Where to place results
162162
results = "$launchDir/results"
163163

164+
// Whether to run in low-memory mode, which limits the number of parallel instances
165+
// of high-memory files
166+
low_memory = null
167+
164168
// whether to cleanup work directory after a successful run (defaults to false)
165169
cleanup = null
166170

0 commit comments

Comments
 (0)