-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextflow.config
41 lines (34 loc) · 912 Bytes
/
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
manifest {
name = 'roskamsh/BetaVAEImputation'
author = 'Breeshey Roskams-Hieter'
homePage = 'https://github.com/roskamsh/BetaVAEMImputation'
description = 'Multiple Imputation using VAEs pipeline'
mainScript = 'main.nf'
nextflowVersion = '>=20.10.0'
}
params {
data = "${projectDir}/data/data_complete.csv"
corrupt_data = "${projectDir}/data/LGGGBM_missing_halfgchighest10perc_trial1.csv"
outdir = "${projectDir}/output"
pipeline_report_dir = "${projectDir}/logs"
}
report {
enabled = true
overwrite = true
file = "${->params.pipeline_report_dir}/report.html"
}
timeline {
enabled = true
overwrite = true
file = "${->params.pipeline_report_dir}/timeline.html"
}
trace {
enabled = true
overwrite = true
file = "${->params.pipeline_report_dir}/trace.txt"
}
profiles {
eddie {
includeConfig 'conf/eddie.config'
}
}