-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
43 lines (42 loc) · 1.19 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
39
40
41
42
43
{
"name": "DEM Raster Merging Processor",
"container": "demmerge-processor",
"description": "Merge the DEM tiles for a watershed",
"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": {
"input_path": {
"type": "string_input",
"require": true,
"default_value": "N/A"
},
"site_id": {
"type": "string_input",
"require": true,
"default_value": "09241000"
},
"merged_filename": {
"type": "string_input",
"require": true,
"default_value": "merged_dem"
}
},
"supported_hpc": ["anvil_community"],
"default_hpc": "anvil_community"
}