-
Notifications
You must be signed in to change notification settings - Fork 0
/
nextflow.config
99 lines (82 loc) · 2.25 KB
/
nextflow.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/*
* ----------------------------------
* exome_n-of-1 Nextflow config file
* ----------------------------------
* Default config options for all environments.
*/
params {
sampleCsv = null
refDir = null
help = false
runID = "somatic_n-of-1"
assembly = "GRCh38"
incOrder = null
bamCsv = false
germline = true
seqLevel = "WGS"
exomeTag = null
scatGath = null
sampleCat = null
multiqcConfig = "$baseDir/assets/somatic_n-of-1.multiQC_config.yaml"
cosmic = false
microbiome = false
localPCGRdata = null
phylogeny = false
germOnly = false
germCNV = false
//Hartwig GRIDSS refs
hartwigGPLURL37 = 'https://nextcloud.hartwigmedicalfoundation.nl/s/LTiKTd8XxBqwaiC/download?path=%2FHMFTools-Resources%2FGRIDSS-Purple-Linx-Docker/gpl_ref_data_37.gz'
hartwigGPLURL38 = 'https://nextcloud.hartwigmedicalfoundation.nl/s/LTiKTd8XxBqwaiC/download?path=%2FHMFTools-Resources%2FGRIDSS-Purple-Linx-Docker/gpl_ref_data_38.gz'
//PCGR data bundles
pcgrURL37 = 'http://insilico.hpc.uio.no/pcgr/pcgr.databundle.grch37.20201123.tgz'
pcgrURL38 = 'http://insilico.hpc.uio.no/pcgr/pcgr.databundle.grch38.20201123.tgz'
}
process {
container = 'library://bruce.moran/default/projects:somatic_n-of-1.centos7.mamba'
}
profiles {
genome {
includeConfig 'conf/genome.config'
includeConfig 'conf/genomes.config'
}
sonic {
includeConfig 'conf/sonic.config'
includeConfig 'conf/genomes.config'
}
genome_refs {
includeConfig 'conf/genome_refs.config'
includeConfig 'conf/genomes.config'
}
sonic_refs {
includeConfig 'conf/sonic_refs.config'
includeConfig 'conf/genomes.config'
}
singularity {
singularity.enabled = true
}
}
timeline {
enabled = true
file = "pipeline_info/somatic_n-of-1.timeline.html"
}
report {
enabled = true
file = "pipeline_info/somatic_n-of-1.report.html"
}
trace {
enabled = true
file = "pipeline_info/somatic_n-of-1.trace.txt"
}
dag {
enabled = true
file = "pipeline_info/somatic_n-of-1.dag.svg"
}
manifest {
name = 'brucemoran/somatic_n-of-1'
author = 'Bruce Moran'
homePage = 'https://github.com/brucemoran/somatic_n-of-1'
description = 'Nextflow somatic n-of-1 analysis pipeline'
mainScript = 'main.nf'
nextflowVersion = '>=19.10.0'
version = '1.1'
}