-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextflow.config
52 lines (43 loc) · 1.17 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
/*
################################################################################
Profiles
################################################################################
*/
profiles {
standard{
process.executor = 'local'
}
slurm {
executor.name = 'slurm'
executor.queueSize = 10
process.executor = 'slurm'
process.queue = params.partition
process.clusterOptions = "--mail-user=$params.email --mail-type=FAIL --nodelist=$params.node_list"
}
conda {
process.conda = "$projectDir/lib/conda.yml"
conda.cacheDir = "${HOME}/nf-condaEnv"
}
}
/*
################################################################################
Workflow introspection
################################################################################
*/
report {
enabled = true
file = "${params.outdir}/reports/report.html"
}
timeline {
enabled = true
file = "${params.outdir}/reports/timeline.html"
}
dag {
enabled = true
file = "${params.outdir}/reports/DAG.svg"
}
trace {
enabled = true
fields = 'process,task_id,hash,name,attempt,status,exit,realtime,cpus,memory,%cpu,vmem,rss,submit,start,complete,duration,realtime,rchar,wchar'
file = "${params.outdir}/reports/trace.txt"
}