-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathnextflow.config
45 lines (45 loc) · 1.16 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
manifest {
author = 'Andreas Bremges'
description = 'CAMITAX: Taxon labels for microbial genomes'
homePage = 'https://github.com/CAMI-challenge/CAMITAX'
nextflowVersion = '>=20.08'
}
profiles {
docker {
docker.enabled = true
docker.runOptions = '-u $(id -u):$(id -g)'
}
singularity {
singularity.enabled = true
}
}
process {
withName:'cache_.*|taxonomy|summary' {
container = 'python'
}
withName:centrifuge {
container = 'quay.io/biocontainers/centrifuge:1.0.4--hd03093a_0'
cpus = 8
memory = 24.GB
}
withName:checkm {
container = 'quay.io/biocontainers/checkm-genome:1.2.2--pyhdfd78af_1'
cpus = 8
memory = 16.GB
}
withName:dada2 {
container = 'quay.io/biocontainers/bioconductor-dada2:1.28'
memory = 8.GB
}
withName:'kaiju' {
container = 'quay.io/biocontainers/kaiju:1.6.2--pl5.22.0_0'
cpus = 8
memory = 16.GB
}
withName:'mash' {
container = 'quay.io/biocontainers/mash:2.0--gsl2.2_2'
}
withName:'prodigal' {
container = 'quay.io/biocontainers/prodigal:2.6.3--0'
}
}