-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
68 lines (68 loc) · 1.54 KB
/
app.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"checkpointable": false,
"name": "{{ username }}-{{ app.name }}",
"executionSystem": "{{ app.execution_system }}",
"executionType": "HPC",
"deploymentPath": "replace with deployment path",
"deploymentSystem": "{{ app.deployment_system }}",
"helpURI": "",
"label": "{{ app.label }}",
"shortDescription": "{{ app.description }}",
"longDescription": "",
"modules": [
"load tacc-singularity/3.4.2"
],
"ontology": [],
"parallelism": "SERIAL",
"tags": [],
"templatePath": "wrapper.sh",
"testPath": "tester.sh",
"version": "{{ app.version }}",
"defaultMaxRunTime": "00:30:00",
"inputs": [],
"parameters": [
{
"id": "imagefile",
"details": {
"label": "Image to classify",
"description":"",
"argument": "--image_file ",
"showArgument":true
},
"semantics": {
"minCardinality":1,
"ontology": [
"http://edamontology.org/format_3547"
],
"maxCardinality": 1
},
"value": {
"default": "https://texassports.com/images/2015/10/16/bevo_1000.jpg",
"order": 0,
"required": true,
"type": "string",
"visible": true
}
},
{
"id": "predictions",
"details": {
"label": "Number of predictions to return",
"argument": "--num_top_predictions ",
"showArgument": true
},
"semantics": {
"maxCardinality": 1,
"ontology": [],
"minCardinality": 1
},
"value": {
"visible": true,
"required": true,
"type": "number",
"default": 5
}
}
],
"outputs": []
}