-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
35 lines (35 loc) · 1.05 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
{
"name": "three-examples",
"description": "Runs three simple examples",
"estimated_runtime": "5 minutes",
"container": "cybergisx-0.4",
"pre_processing_stage": "python example1/example1.py",
"execution_stage": "python example2/make_maps.py",
"post_processing_stage": "bash example3/say_my_name.sh",
"slurm_input_rules": {
"time": {
"max": 10,
"min": 5,
"default_value": 10,
"step": 1,
"unit": "Minutes"
},
"memory": {
"max": 4,
"min": 2,
"default_value": 4,
"step": 1,
"unit": "GB"
}
},
"require_upload_data": true,
"param_rules": {
"name": {
"type": "string_input",
"require": true,
"default_value": "Your Name Here"
}
},
"supported_hpc": ["anvil_community", "expanse_community", "keeling_community", "rails_community"],
"default_hpc": "keeling_community"
}