-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathgermline_small.config
More file actions
59 lines (50 loc) · 2.06 KB
/
germline_small.config
File metadata and controls
59 lines (50 loc) · 2.06 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
54
55
56
57
58
59
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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 germline_small,<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: germline_small'
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"
method = 'happy,rtgtools'
preprocess = "normalize,deduplicate,prepy"
// truth information
truth_id = "HG002"
truth_vcf = "${params.test_data_base}/testdata/hg38/truth/germline/HG002_GRCh38_1_22_v4.2_benchmark_chr21.vcf.gz"
regions_bed = "${params.test_data_base}/testdata/hg38/truth/germline/HG002_GRCh38_1_22_v4.2_benchmark_chr21.bed"
rename_chr = "${projectDir}/assets/rename_contigs/grch37_grch38.txt"
}