8
8
profiles {
9
9
conda { params. enable_conda = true }
10
10
debug { process. beforeScript = ' echo $HOSTNAME' }
11
- test {
12
- params. input_files = " test_data/test_input.txt"
13
- params. reference = " $baseDir /test_data/ucsc.hg19.minimal.fasta"
11
+ ci {
14
12
params. prepare_bam_cpus = 1
15
13
params. prepare_bam_memory = " 3g"
16
14
params. mark_duplicates_cpus = 1
@@ -23,15 +21,19 @@ profiles {
23
21
params. metrics_memory = " 3g"
24
22
params. index_cpus = 1
25
23
params. index_memory = " 3g"
26
- params. known_indels1 = " $baseDir /test_data/1000G_phase1.indels.hg19.sites.minimal.vcf"
27
- params. known_indels2 = " $baseDir /test_data/Mills_and_1000G_gold_standard.indels.hg19.sites.sorted.minimal.vcf"
28
- params. intervals = " $baseDir /test_data/minimal_intervals.bed"
29
- params. dbsnp = " $baseDir /test_data/dbsnp_138.hg19.minimal.vcf"
30
24
timeline. enabled = false
31
25
report. enabled = false
32
26
trace. enabled = false
33
27
dag. enabled = false
34
28
}
29
+ test {
30
+ params. input_files = " test_data/test_input.txt"
31
+ params. reference = " $baseDir /test_data/ucsc.hg19.minimal.fasta"
32
+ params. known_indels1 = " $baseDir /test_data/1000G_phase1.indels.hg19.sites.minimal.vcf"
33
+ params. known_indels2 = " $baseDir /test_data/Mills_and_1000G_gold_standard.indels.hg19.sites.sorted.minimal.vcf"
34
+ params. intervals = " $baseDir /test_data/minimal_intervals.bed"
35
+ params. dbsnp = " $baseDir /test_data/dbsnp_138.hg19.minimal.vcf"
36
+ }
35
37
}
36
38
37
39
// Export this variable to prevent local Python libraries from conflicting with those in the container
@@ -91,6 +93,8 @@ Optional input:
91
93
* --skip_metrics: optionally skip metrics (default: false)
92
94
* --output: the folder where to publish output (default: ./output)
93
95
* --platform: the platform to be added to the BAM header. Valid values: [ILLUMINA, SOLID, LS454, HELICOS and PACBIO] (default: ILLUMINA)
96
+ * --split_cigarn: split reads that contain Ns in their cigar string (e.g. spanning splicing events in RNAseq data) using GATKs SplitNCigarReads
97
+ * --split_cigarn_args: additional arguments for SplitNCigarReads
94
98
95
99
Computational resources:
96
100
* --prepare_bam_cpus: (default: 3)
0 commit comments