-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnextflow.config
executable file
·54 lines (42 loc) · 1.13 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
manifest {
mainScript = 'main.nf'
}
// default parameters
params {
cores = '2'
memory = '2'
help = false
profile = false
// input
nano = 'data/some.fasta'
illumina = ''
list = false
// parameters
variable1 = 'variable1'
variable2 = 'variable2'
// folder structure
output = 'results'
// optional profile configurations, only necessary for HPC LSF execution
workdir = "/tmp/nextflow-work-$USER"
cloudDatabase = false
cachedir = false
}
profiles {
standard {
params.cloudProcess = false
params.cloudDatabase = false
includeConfig 'configs/local.config' }
conda {
params.cloudProcess = false
params.cloudDatabase = false
includeConfig 'configs/conda.config' }
lsf {
params.cloudProcess = true
includeConfig 'configs/lsf.config' }
ebi {
params.cloudProcess = true
params.workdir = "/hps/nobackup2/production/metagenomics/$USER/nextflow-work-$USER"
params.cloudDatabase = "/homes/$USER/data/nextflow-databases/"
params.cachedir = "/hps/nobackup2/singularity/$USER"
includeConfig 'configs/lsf.config' }
}