-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnextflow.config
More file actions
46 lines (41 loc) · 977 Bytes
/
nextflow.config
File metadata and controls
46 lines (41 loc) · 977 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
44
45
/*
* Pipeline parameters
*/
params.data_path = "$projectDir/data"
params.output_path = "$projectDir/output"
params.threads = 30
params.download_from = null
params.output_file = null
params.time = null
params.mem = params.mem ?: '90%' // use 90% of available memory if not specified
/*
* Process parameters
*/
process {
// common attributes
withName: RUNAMPLIFY{
container = 'quay.io/biocontainers/amplify:2.0.1--py36hdfd78af_0'
}
withName: RUNTAMPER{
container = 'itsberkeucar/tamper'
}
withName: RUNCOLABFOLD{
container = 'biohpc/localcolabfold:1.5'
}
withName: COMPILERESULTS{
container = 'itsberkeucar/ampseek-visualization'
}
}
/*
* Profiles for containers and their parameters
*/
profiles{
singularity {
singularity.enabled = true
singularity.autoMounts = true
}
docker {
docker.enabled = true
docker.runOptions = "--platform=linux/amd64"
}
}