-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnextflow.config
More file actions
98 lines (97 loc) · 2.92 KB
/
Copy pathnextflow.config
File metadata and controls
98 lines (97 loc) · 2.92 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
params {
outdir = './results/'
}
process{
withName: "import_features" {
container = "oras://community.wave.seqera.io/library/pip_h5py_numpy_pandas_tqdm:36db6155b28d4045"
memory = "10G"
cpus = 1
}
withName: "split_dataset" {
container = "oras://community.wave.seqera.io/library/pip_h5py_numpy_pandas_scikit-learn:f3e50b92698f7128"
memory = "60G"
cpus = 16
}
withName: "grid_search" {
container = "oras://community.wave.seqera.io/library/pip_h5py_numpy_pandas_scikit-learn:f3e50b92698f7128"
memory = "100G"
cpus = 16
}
withName: "roc_auc_curve" {
container = "oras://community.wave.seqera.io/library/r-ggplot2_r-tidyverse:12aafae3063e7f64"
memory = "1G"
cpus = 1
}
withName: "boxplot" {
container = "oras://community.wave.seqera.io/library/r-ggplot2_r-tidyverse:12aafae3063e7f64"
memory = "1G"
cpus = 1
}
}
profiles {
kutral {
singularity.enabled = true
singularity.autoMounts = true
singularity.runOptions = ' --bind /mnt/beegfs/labs/ '
conda.enabled = false
docker.enabled = false
podman.enabled = false
shifter.enabled = false
charliecloud.enabled = false
apptainer.enabled = false
process.executor = 'slurm'
process.queue = 'ngen-ko'
//executor.queueSize = 10
}
local {
singularity.enabled = true
singularity.autoMounts = true
singularity.runOptions = ' --bind /mnt/beegfs/labs/ '
conda.enabled = false
docker.enabled = false
podman.enabled = false
shifter.enabled = false
charliecloud.enabled = false
apptainer.enabled = false
}
stub {
process {
withName: '.*' {
cpus = 1
memory = '1 GB'
time = '5 min'
errorStrategy = 'retry'
maxRetries = 3
}
}
docker.enabled = false
singularity.enabled = false
conda.enabled = false
podman.enabled = false
shifter.enabled = false
charliecloud.enabled = false
apptainer.enabled = false
}
}
def trace_timestamp = new java.util.Date().format( 'yyyy-MM-dd_HH-mm-ss')
timeline {
enabled = true
file = "${params.outdir}/pipeline_info/execution_timeline_${trace_timestamp}.html"
}
report {
enabled = true
file = "${params.outdir}/pipeline_info/execution_report_${trace_timestamp}.html"
}
trace {
enabled = true
file = "${params.outdir}/pipeline_info/execution_trace_${trace_timestamp}.txt"
}
dag {
enabled = true
file = "${params.outdir}/pipeline_info/pipeline_dag_${trace_timestamp}.html"
}
manifest {
defaultBranch = 'main'
author = 'Gabriel Cabas'
version = '0.0.1'
}