-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathnextflow.config
More file actions
68 lines (58 loc) · 2 KB
/
nextflow.config
File metadata and controls
68 lines (58 loc) · 2 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
60
61
62
63
64
65
66
67
68
params {
/* Command line parameters */
bam = "" // The bamfile, on commandline ( --bam )
runfile = "" // File containing names of multiple bamfiles and out directories on commandline ( --runfile )
project = "" // Set project or supply on commandline ( --project )
steps = 'manta,normalize,vep' // Change on commandline --steps x,y,z
outdir = "results"
prefix = ''
help = False
//optional cohort masking
sg_mask_ovlp = 0.95 // --sg_mask_ovlp in case other overlap value than default 0.95 for cohort
no_sg_reciprocal = False // --no_sg_reciprocal in case cohort masking should not include reciprocal overlap option
// Reference assemblies
ref_fasta = "/sw/data/uppnex/ToolBox/ReferenceAssemblies/hg38make/bundle/2.8/b37/human_g1k_v37.fasta"
assembly = 'GRCh37'
// Runtimes for different parts of the workflow
runtime {
simple = '3h' // Short simple shell jobs
fermikit = '48h' // Fermikit is the longest running of them all
caller = '24h' // The rest are a lot quicker
}
// Dirs that contain BED files for masking
mask_artifacts_dir = "$baseDir/mask_artifacts"
mask_cohort_dir = "$baseDir/mask_cohort"
}
profiles {
milou {
includeConfig 'config/standard.config'
includeConfig 'config/milou.config'
}
bianca {
includeConfig 'config/standard.config'
includeConfig 'config/bianca.config'
}
devel {
includeConfig 'config/devcore.config'
includeConfig 'config/milou.config'
}
localmilou {
includeConfig 'config/milou.config'
process.executor = 'local'
process.errorStrategy = { $params.runfile != "" ? 'ignore' : 'terminate' }
}
localbianca {
includeConfig 'config/bianca.config'
process.executor = 'local'
process.errorStrategy = { $params.runfile != "" ? 'ignore' : 'terminate' }
}
}
executor {
$slurm {
queueSize = 30
}
$local {
queueSize = 30
cpus = 16
}
}