-
Notifications
You must be signed in to change notification settings - Fork 0
/
base.config
executable file
·63 lines (55 loc) · 1.07 KB
/
base.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
params.output_dir="./.default_output"
params.pipeline_info = "${params.output_dir}/pipeline_info"
trace {
enabled = true
file = "${params.pipeline_info}/pipeline_stats.txt"
overwrite = true
fields = "task_id,\
hash,\
process,\
tag,\
status,\
exit,\
start,\
peak_rss,\
cpus,\
time,\
disk,\
memory,\
duration,\
realtime,\
queue,\
%cpu,\
%mem,\
rss,\
vmem,\
rchar,\
wchar"
}
timeline {
enabled = true
overwrite = true
file = "$params.pipeline_info/execution_timeline.html"
}
report {
enabled = true
overwrite = true
file = "$params.pipeline_info/execution_report.html"
}
dag {
enabled = true
file = "${params.pipeline_info}/pipeline_dag.png"
overwrite = true
}
manifest {
name = 'ayoraind/hDNA_removal_and_mapping_stats'
author = 'Ayorinde Afolayan'
homePage = 'https://github.com/ayoraind'
description = 'Pipeline for Human DNA Removal and the Generation of Mapping Statistics'
mainScript = 'main.nf'
version = '1.0dev'
}
process {
errorStrategy = { task.attempt <= 5 ? "retry" : "finish" }
maxRetries = 5
}