forked from nf-core/sarek
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnextflow.config
More file actions
66 lines (59 loc) · 1.73 KB
/
nextflow.config
File metadata and controls
66 lines (59 loc) · 1.73 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
/*
* -------------------------------------------------
* Nextflow config file for Sarek
* -------------------------------------------------
* Default config options for all environments.
* Cluster-specific config options should be saved
* in the configuration folder and imported under a
* profile name here.
*/
manifest {
author = 'Szilvester Juhos, Maxime Garcia'
description = 'Sarek - Workflow For Somatic And Germline Variations'
homePage = 'http://sarek.scilifelab.se'
mainScript = 'main.nf'
name = 'Sarek'
nextflowVersion = '>=0.32.0'
version = '2.2.1'
}
env {
NXF_OPTS="-Xms1g"
}
profiles {
legion {
includeConfig 'conf/legion.config'
includeConfig 'conf/genomes_legion.config'
}
myriad {
includeConfig 'conf/myriad.config'
includeConfig 'conf/genomes_myriad.config'
}
myriad3 {
includeConfig 'conf/myriad3.config'
includeConfig 'conf/genomes_myriad.config'
}
// Small testing with Singularity profile
// Singularity images will be pulled automatically
singularity {
includeConfig 'conf/base.config'
includeConfig 'conf/travis.config'
includeConfig 'conf/singularity.config'
includeConfig 'conf/containers.config'
}
// Small testing with Singularity profile
// Singularity images need to be set up
singularityPath {
includeConfig 'conf/base.config'
includeConfig 'conf/travis.config'
includeConfig 'conf/singularity-path.config'
}
// Default config for german BinAC cluster
// Runs the pipeline using the pbs executor
// Singularity images will be pulled automatically
binac {
includeConfig 'conf/base.config'
includeConfig 'conf/binac.config'
includeConfig 'conf/singularity.config'
includeConfig 'conf/containers.config'
}
}