-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
params { | ||
// Base directory for nf-core/modules test data | ||
modules_testdata_base_path = 's3://ngi-igenomes/testdata/nf-core/modules/' | ||
|
||
// Base directory for nf-core/fetchngs test data | ||
pipelines_testdata_base_path = 's3://ngi-igenomes/testdata/nf-core/pipelines/fetchngs/1.15.0/' | ||
|
||
max_cpus = 4 | ||
max_memory = '12.GB' | ||
time = '2.h' | ||
} | ||
|
||
// Impose sensible resource limits for testing | ||
process { | ||
withName: BOWTIE2_PHIX_REMOVAL_ALIGN { | ||
cpus = 1 | ||
memory = 12.GB | ||
time = 2.h | ||
} | ||
|
||
withName: CENTRIFUGE_CENTRIFUGE { | ||
cpus = 1 | ||
memory = 12.GB | ||
time = 2.h | ||
} | ||
|
||
withName: BOWTIE2_ASSEMBLY_ALIGN { | ||
cpus = 1 | ||
memory = 12.GB | ||
time = 2.h | ||
} | ||
|
||
withName: METABAT2_JGISUMMARIZEBAMCONTIGDEPTHS { | ||
cpus = 1 | ||
memory = 12.GB | ||
time = 2.h | ||
} | ||
|
||
withName: QUAST_BINS { | ||
cpus = 1 | ||
memory = 12.GB | ||
time = 2.h | ||
} | ||
|
||
withName: METABAT2_METABAT2 { | ||
cpus = 1 | ||
memory = 12.GB | ||
time = 2.h | ||
} | ||
} | ||
|
||
// Impose same minimum Nextflow version as the pipeline for testing | ||
manifest { | ||
nextflowVersion = '!>=23.04.0' | ||
} | ||
|
||
// Disable all Nextflow reporting options | ||
timeline { enabled = false } | ||
report { enabled = false } | ||
trace { enabled = true } | ||
dag { enabled = false } | ||
|
||
// Load modules test_data.config | ||
includeConfig 'https://github.com/nf-core/modules/raw/master/tests/config/test_data.config' |