forked from nf-core/ampliseq
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_qiimecustom.config
More file actions
39 lines (31 loc) · 1.45 KB
/
Copy pathtest_qiimecustom.config
File metadata and controls
39 lines (31 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Nextflow config file for running minimal tests
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Defines input files and everything required to run a fast and simple pipeline test.
Use as follows:
nextflow run nf-core/ampliseq -profile test_qiimecustom,<docker/singularity> --outdir <OUTDIR>
----------------------------------------------------------------------------------------
*/
process {
resourceLimits = [
cpus: 4,
memory: '15.GB',
time: '2.h'
]
}
params {
config_profile_name = 'Test custom QIIME2 reference taxonomy database profile'
config_profile_description = 'Minimal test dataset to check --qiime_ref_tax_custom'
// Input data
FW_primer = "GTGYCAGCMGCCGCGGTAA"
RV_primer = "GGACTACNVGGGTWTCTAAT"
input = params.pipelines_testdata_base_path + "ampliseq/samplesheets/Samplesheet.tsv"
// Comparison to expected
expected_sequences = params.pipelines_testdata_base_path + "ampliseq/benchmarking/benchmarking_sequences.fasta"
// Custom reference taxonomy
qiime_ref_tax_custom = params.pipelines_testdata_base_path + "ampliseq/testdata/85_greengenes.fna.gz," + params.pipelines_testdata_base_path + "ampliseq/testdata/85_greengenes.tax.gz"
// Skip downstream analysis with QIIME2
skip_qiime_downstream = true
skip_dada_taxonomy = true
}