-
Notifications
You must be signed in to change notification settings - Fork 0
/
nextflow.config
92 lines (80 loc) · 1.8 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
/*
* -------------------------------------------------
* Nextflow config file
* -------------------------------------------------
* Default config options for all environments.
*/
manifest {
name = 'neoAntigen'
description = 'NeoAntigen detection analysis pipeline'
homePage = 'https://gitlab.curie.fr/data-analysis/nf-neoant'
author = 'Institut Curie - Bioinformatics core facility'
version = '0.1'
mainScript = 'main.nf'
nextflowVersion = '>=21.10.6'
}
/**********
* Params *
**********/
params {
email = false
help = false
name = false
samplePlan = null
readPaths = null
// Analysis parameters
genome = false
skipSoftVersions = false
// Output directories
outDir = "$launchDir/results"
tmpDir = '/local/scratch/'
summaryDir = "${params.outDir}/summary"
metadata = "$projectDir/assets/metadata.tsv"
}
/************************
* Configs and profiles *
************************/
conda.enabled = true
conda.useMamba = true
trace.overwrite = true
dag.overwrite = true
report.overwrite = true
timeline.overwrite = true
// Additional configs
includeConfig 'conf/base.config'
includeConfig 'conf/process.config'
includeConfig 'conf/geniac.config'
// Profiles
profiles {
conda {
includeConfig 'conf/conda.config'
}
multiconda {
includeConfig 'conf/multiconda.config'
}
docker {
includeConfig 'conf/docker.config'
}
singularity {
includeConfig 'conf/singularity.config'
}
path {
includeConfig 'conf/path.config'
}
multipath {
includeConfig 'conf/multipath.config'
}
podman {
includeConfig 'conf/podman.config'
}
cluster {
includeConfig 'conf/cluster.config'
}
test{
includeConfig 'conf/test.config'
}
}
// Annotation paths
includeConfig 'conf/genomes.config'
// Load modules
includeConfig 'conf/modules.config'