-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
38 lines (38 loc) · 1.08 KB
/
manifest.json
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
{
"name": "SimpleDataProc Processor",
"container": "simpledataprocess",
"description": "Creates 3 output har files for desired regions",
"pre_processing_stage": "python3 create_processor_yml.py",
"execution_stage": "./main.sh",
"post_processing_stage": "./transfer_shared_outputs.sh",
"slurm_input_rules": {
"time": {
"max": 60,
"min": 10,
"default_value": 10,
"step": 10,
"unit": "Minutes"
},
"cpu_per_task": {
"max": 128,
"min": 16,
"default_value": 16,
"step": 16
}
},
"param_rules": {
"start_year": {
"type": "string_input",
"require": true,
"default_value": "2015"
},
"end_year": {
"type": "string_input",
"require": true,
"default_value": "2020"
}
},
"require_upload_data": true,
"supported_hpc": ["anvil_community"],
"default_hpc": "anvil_community"
}