-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathconcordance.config
More file actions
53 lines (45 loc) · 1.68 KB
/
concordance.config
File metadata and controls
53 lines (45 loc) · 1.68 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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/variantbenchmarking -profile concordance,<docker/singularity> --outdir <OUTDIR>
----------------------------------------------------------------------------------------
*/
process {
resourceLimits = [
cpus: 4,
memory: '15.GB',
time: '1.h'
]
withName: 'BCFTOOLS_NORM*' {
cpus = { 1 }
memory = { 6.GB * task.attempt }
time = { 4.h * task.attempt }
}
withName: 'BCFTOOLS_FILTER*' {
cpus = { 1 }
memory = { 6.GB * task.attempt }
time = { 4.h * task.attempt }
}
withName: 'BCFTOOLS_SORT*' {
cpus = { 1 }
memory = { 6.GB * task.attempt }
time = { 4.h * task.attempt }
}
}
params {
config_profile_name = 'Test profile: concordance'
config_profile_description = 'Minimal test dataset to check pipeline function'
// Input data
input = "${params.test_data_base}/samplesheet/samplesheet_small_germline_hg38.csv"
outdir = "results"
// Genome references
genome = 'GRCh38'
// Processes
analysis = 'germline'
variant_type = "small"
preprocess = "split_multiallelic,normalize,deduplicate"
method = 'concordance'
}