-
Notifications
You must be signed in to change notification settings - Fork 7
/
manifest.json
41 lines (41 loc) · 1.12 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
{
"name": "hello world",
"container": "python",
"pre_processing_stage": "python setup.py",
"execution_stage": "bash main.sh",
"post_processing_stage": "python cleanup.py",
"slurm_input_rules": {
"time": {
"max": 50,
"min": 10,
"default_value": 10,
"step": 1,
"unit": "Minutes"
},
"num_of_task": {
"max": 6,
"min": 1,
"default_value": 2,
"step": 1
}
},
"require_upload_data": false,
"param_rules": {
"input_a": {
"type": "integer",
"require": true,
"max": 100,
"min": 0,
"default_value": 50,
"step": 10
},
"input_b": {
"type": "string_option",
"options": ["foo", "bar"],
"default_value": "foo"
}
},
"default_result_folder_downloadable_path": "/demo_quick_start_0",
"supported_hpc": ["aces_community", "anvil_community", "expanse_community", "keeling_community", "rails_community"],
"default_hpc": "keeling_community"
}