|
1 | | -/* |
2 | | -======================================================================================== |
3 | | - Nextflow config file for running minimal tests with GloSED database |
4 | | -======================================================================================== |
5 | | - Defines input files and everything required to run a fast and simple pipeline test |
6 | | - using the GloSED (Global Standardised Soil Eukaryome Dataset) reference database. |
7 | | - |
8 | | - Use as follows: |
9 | | - nextflow run nf-core/ampliseq -profile test_glosed,<docker/singularity> --outdir <OUTDIR> |
10 | | - |
11 | | ----------------------------------------------------------------------------------------- |
12 | | -*/ |
13 | | - |
14 | | -process { |
15 | | - resourceLimits = [ |
16 | | - cpus: 4, |
17 | | - memory: '256.GB', |
18 | | - time: '2.h' |
19 | | - ] |
20 | | -} |
21 | | - |
22 | 1 | params { |
23 | 2 | config_profile_name = 'Test profile for GloSED database' |
24 | 3 | config_profile_description = 'Minimal test dataset to verify pipeline function with GloSED reference database' |
25 | 4 |
|
26 | | - // Input data |
27 | 5 | FW_primer = "GTGYCAGCMGCCGCGGTAA" |
28 | 6 | RV_primer = "GGACTACNVGGGTWTCTAAT" |
29 | 7 | input = params.pipelines_testdata_base_path + "ampliseq/samplesheets/Samplesheet.tsv" |
30 | 8 | dada_ref_taxonomy = "glosed" |
31 | | - |
32 | 9 | skip_qiime = true |
| 10 | + |
| 11 | + // IMPORTANT: override the actual database map used by the workflow |
| 12 | + dada_ref_databases.glosed = [ |
| 13 | + title:"GloSED - Global standardised Soil Eukaryome Dataset", |
| 14 | + file:[ |
| 15 | + "https://raw.githubusercontent.com/nf-core/test-datasets/ampliseq/GloSED__OTU_sequences_first1k.fasta.zip", |
| 16 | + "https://raw.githubusercontent.com/nf-core/test-datasets/ampliseq/GloSED_Taxonomy_first1k.tsv.zip" |
| 17 | + ], |
| 18 | + citation:"Sundh J, Larsson E, Nilsson RH, et al. GloSED fungal ITS database. Zenodo. https://zenodo.org/records/17827890", |
| 19 | + fmtscript:"taxref_reformat_glosed.sh", |
| 20 | + dbversion:"GloSED test subset (first1k)" |
| 21 | + ] |
33 | 22 | } |
| 23 | + |
| 24 | + |
0 commit comments