-
Notifications
You must be signed in to change notification settings - Fork 117
/
Copy pathtest_full.config
38 lines (30 loc) · 1.24 KB
/
test_full.config
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
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Nextflow config file for running full-size tests
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Defines input files and everything required to run a full size pipeline test.
Use as follows:
nextflow run nf-core/viralrecon -profile test_full,<docker/singularity> --outdir <OUTDIR>
----------------------------------------------------------------------------------------
*/
params {
config_profile_name = 'Full test profile'
config_profile_description = 'Full test dataset to check pipeline function'
// Input data for full test of amplicon analysis
input = 'https://raw.githubusercontent.com/nf-core/test-datasets/viralrecon/samplesheet/v2.6/samplesheet_full_amplicon_illumina.csv'
platform = 'illumina'
protocol = 'amplicon'
primer_set = 'artic'
primer_set_version = 3
// Genome references
genome = 'MN908947.3'
// Variant calling options
variant_caller = 'ivar'
// Assembly options
assemblers = 'spades,unicycler,minia'
}
process {
withName: 'PLASMIDID' {
errorStrategy = 'ignore'
}
}