-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdxapp.json
64 lines (64 loc) · 1.76 KB
/
dxapp.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
{
"name": "oncodeep_upload_v1.0.0",
"summary": "File upload to Oncodeep SFTP server",
"properties": {
"github release": "v1.0.0"
},
"dxapi": "1.0.0",
"inputSpec": [
{
"name": "file_to_upload",
"label": "File to upload to SFTP server",
"class": "file",
"help": "File to upload to SFTP server. Could be fastq, could be MasterdataFile",
"optional": false
},
{
"name": "run_identifier",
"label": "Identifier for the run",
"class": "string",
"help": "Identifier for the run, for example OKD1234. Specifies the subfolder name on the SFTP server",
"optional": false
},
{
"name": "account_type",
"label": "Production or validation account",
"class": "string",
"choices": [
"Production",
"Validation"
],
"help": "Select whether you would like to upload to the production or validation sftp server",
"optional": false
}
],
"outputSpec": [
{
"name": "logfile",
"label": "logfile",
"class": "file",
"help": "Log file for audit trail",
"optional": false
}
],
"runSpec": {
"execDepends": [],
"assetDepends": [],
"systemRequirements": {
"*": {
"instanceType": "mem1_ssd1_v2_x2"
}
},
"file": "src/code.sh",
"release": "20.04",
"version": "0",
"interpreter": "bash",
"distribution": "Ubuntu"
},
"access": {
"allProjects": "UPLOAD",
"network": [
"*"
]
}
}