Skip to content

Commit

Permalink
Look for uncompressed fastq as well
Browse files Browse the repository at this point in the history
  • Loading branch information
BioWilko committed Aug 28, 2024
1 parent 638e95b commit 5f73a52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ manifest {
description = 'Epi2me compatible Nextflow pipeline for processing ARTIC tiling amplicon Illumina sequencing reads from monkeypox virus (MPXV) samples.'
mainScript = 'main.nf'
nextflowVersion = '>=20.01.0'
version = '1.0.8'
version = '1.0.9'
}

// Load base.config by default for all pipelines
Expand All @@ -26,7 +26,7 @@ def makeFastqSearchPath ( illuminaSuffixes, fastq_exts ) {
params {

illuminaSuffixes = ['*_R{1,2}_001', '*_R{1,2}', '*_{1,2}' ]
fastq_exts = ['.fastq.gz', '.fq.gz']
fastq_exts = ['.fastq.gz', '.fq.gz', '.fastq', '.fq']
fastqSearchPath = makeFastqSearchPath( params.illuminaSuffixes, params.fastq_exts )

max_memory = '32.GB'
Expand Down

0 comments on commit 5f73a52

Please sign in to comment.