-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnextflow.config
More file actions
43 lines (34 loc) · 871 Bytes
/
nextflow.config
File metadata and controls
43 lines (34 loc) · 871 Bytes
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
#!/usr/bin/env nextflow
params.features = "./phage_data/*/*.gff"
params.proteins = "./phage_data/*/*.faa"
params.outDir = "results"
params.wsl = false
params.maxProteinLength = 1500
params.colabdb = "." // "path/to/db/name_of_db"
params.foldseekdb = "." // "path/to/db/name_of_db"
params.validdb = "" // "path/to/db/name_of_db"
params.email = ""
workDir = "work"
params.help = false
cleanup = true
docker {
enabled = true
runOptions = "--rm"
fixOwnership = true
}
process {
withName: mmseqscluster {
container = "colabfold"
}
withName: mmseqsclusterRefine {
container = "colabfold"
}
withName: colabfold_batch {
container = "colabfold"
}
withName: colabfold_batch_wsl {
container = "colabfold"
}
// use this container for the rest
container = "phagomics"
}