-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.nf
35 lines (27 loc) · 943 Bytes
/
main.nf
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
include { BENCHMARKING } from './workflows/benchmarking'
workflow {
BENCHMARKING(
params.kang,
params.reactome,
params.runtime.enabled,
params.runtime.n_runs,
params.runtime.n_fixed_cells,
params.runtime.n_fixed_genes,
params.runtime.preprocessing_threshold,
params.static_plots.enabled,
params.correlation.enabled,
params.correlation.n_runs,
params.correlation.n_genes,
params.negative.enabled,
params.negative.n_genes,
params.negative.preprocessing_threshold,
params.performance.enabled,
params.performance.n_runs,
params.performance.n_genes,
params.performance.hvg_ratio,
params.performance.preprocessing_threshold,
params.reproducibility_enabled,
params.reproducibility_lung_cancer_atlas,
params.reproducibility_preprocessing_threshold
)
}