-
Notifications
You must be signed in to change notification settings - Fork 0
/
nextflow.config
52 lines (48 loc) · 1.37 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
params {
// Required Parameters
outdir = "/vast/scratch/users/$USER/results"
inputdir = "$projectDir/example"
}
// Tower Configuration
/* tower {
enabled = true
workspaceId = '103725969693338' //Change this to your workspace id
endpoint = 'https://tower.services.biocommons.org.au/api'
} */
profiles {
debug {
dumpHashes = true
process.beforeScript = 'echo $HOSTNAME'
cleanup = false
}
milton{
conda.enabled = true
process {
withLabel:Test {
queue='regular'
cpus = 5
memory={ 1.GB * task.attempt }
time='12h'
errorStrategy ={ 'retry' }
maxRetries= 5
//module = 'python/3.9.17'
// Add ':' then another module name, to load mulitple modules
}
}
}
conda {
conda.enabled = true
process {
withLabel:Test {
queue='regular'
cpus = 5
memory={ 1.GB * task.attempt }
time='12h'
errorStrategy ={ 'retry' }
maxRetries= 2
conda ="$projectDir/envs/test.yaml"
// Must have $projectDir to work on seqera platform
}
}
}
}