-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathnextflow.config
More file actions
50 lines (37 loc) · 834 Bytes
/
Copy pathnextflow.config
File metadata and controls
50 lines (37 loc) · 834 Bytes
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
manifest {
mainScript = "main.nf"
defaultBranch = "master"
nextflowVersion = ">=21.04"
}
params {
pipeline_name = ""
conda_env = "tesseract"
run = false
run_conditions_file = "conditions.*.txt"
run_pipeline = ""
run_profiles = ""
run_output_dir = ""
run_trace_file = ""
run_trials = 1
aggregate = false
train = false
train_merge_args = []
train_inputs = [:]
train_targets = ["runtime_hr", "memory_GB", "disk_GB"]
train_scaler = "maxabs"
train_model_type = "mlp"
train_intervals = true
predict = false
predict_targets = ["runtime_hr", "memory_GB", "disk_GB"]
predict_process = null
predict_inputs = null
}
process {
errorStrategy = "terminate"
cpus = 1
memory = 4.GB
}
executor {
name = "local"
cpus = 1
}