-
Notifications
You must be signed in to change notification settings - Fork 0
/
nextflow.config
executable file
·125 lines (92 loc) · 2.23 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
params {
help = false
}
process {
withName: 'FASTQC|FASTQC2' {
container = 'docker://staphb/fastqc:0.11.9'
cpus = 8
memory = '16 GB'
}
withName:trimmomatic{
container = 'docker://staphb/trimmomatic:0.39'
}
withName:bbtools{
container = 'docker://staphb/bbtools:38.76'
}
withName:bwa_INDEX {
container = 'docker://staphb/bwa:0.7.17'
}
withName:bwa_aln{
container = 'docker://staphb/bwa:0.7.17'
}
withName:samtools_conv{
container = 'staphb/samtools'
}
withName:samtools_sort{
container = 'staphb/samtools'
}
withName:'samtools_index|samtools|unmapped_proc'{
container = 'staphb/samtools'
}
withName:samtools_mpileup{
container = 'staphb/samtools'
container = 'staphb/ivar'
}
withName:'bwa_INDEX_each|bwa_aln_proc' {
container = 'docker://staphb/bwa:0.7.17'
cpus = 14
}
withName:bcftools_mpileup{
container = 'staphb/bcftools'
}
withName:'scrub|scrub2' {
//container = 'ncbi/sra-human-scrubber'
container = 'ncbi/sra-human-scrubber:latest'
}
withName:kraken {
container = 'staphb/kraken2'
cpus = 20
memory = 140.GB
}
withName:bracken {
container ='docker://staphb/bracken:latest'
cpus = 20
memory = 140.GB
}
withName:skesa_asbl {
container = 'staphb/skesa'
cpus = 8
memory = 40.GB
}
withName:'bowtie_INDEX_each|bowtie2_aln_proc' {
container = 'staphb/bowtie2'
}
withName:pilon {
container = 'staphb/pilon:1.24'
memory = 32.GB
cpus = 16
}
withName:blast_search {
container = 'staphb/blast'
}
withName:quast{
container = 'docker://staphb/quast:5.0.2'
}
withName:readssum{
container = 'docker://staphb/lyveset:1.1.4f'
}
withName:multiqc{
container = 'docker://staphb/multiqc:1.8'
}
withName:readsproc{
container = 'staphb/lyveset'
}
// withName:ivar_cons{
// container = 'staphb/ivar'
// }
}
apptainer {
enabled = true
}
//apptainer.cacheDir = './'
apptainer.autoMounts = true