-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextflow.config
36 lines (36 loc) · 1 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
profiles {
docker {
process {
withLabel: 'preprocess' {
container = 'rund0wn/borg_16s_nf:1.0'
}
withLabel: 'perl' {
container = 'rund0wn/borg_16s_nf:1.0'
}
withLabel: 'swarm' {
container = 'rund0wn/borg_16s_nf:1.0'
}
withLabel: 'vsearch' {
container = 'rund0wn/borg_16s_nf:1.0'
}
withLabel: 'python' {
container = 'rund0wn/borg_16s_nf:1.0'
}
}
docker {
enabled = true
runOptions = '-u \$(id -u):\$(id -g) -v PATH/TO/YOUR/DATA/Folder:/data'
container = 'rund0wn/borg_16s_nf:1.0'
}
}
singularity {
process {
container = { 'docker://rund0wn/borg_16s_nf:1.0' }
}
singularity {
enabled = true
autoMounts = true
runOptions = '-B PATH/TO/YOUR/DATA/Folder:/data'
}
}
}