-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdxapp.json
More file actions
164 lines (164 loc) · 3.88 KB
/
dxapp.json
File metadata and controls
164 lines (164 loc) · 3.88 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
{
"name": "execR",
"title": "execR",
"summary": "App to execute any R code.",
"tags": [
"Statistics"
],
"dxapi": "1.0.0",
"version": "0.0.1",
"inputSpec": [
{
"name": "r_code",
"label": "Main R code",
"help": "Main R code. If you have multiple R codes that you source, put them into a tarball. This tarball will be extracted to /data directory and you MUST name your main R code main.R.",
"class": "file",
"patterns": ["*.r", "*.R", "*.tar.gz", "*.tar.bz2"],
"optional": false
},
{
"name": "output_file",
"label": "Output file name",
"class": "string",
"optional": false
},
{
"name": "param_str",
"label": "Parameter String",
"help": "Optional parameter string. Multiple parameters should be delimited. Choice of delimiter is up to you.",
"class": "string",
"optional": true
},
{
"name": "prologue_shell",
"label": "Prologue shell file",
"help": "An optional shell file to load BEFORE executing R file. Useful for preprocessing data or installing R packages.",
"class": "file",
"patterns": ["*.sh"],
"optional": true
},
{
"name": "epilogue_shell",
"label": "Epilogue shell file",
"help": "An optional shell file to load AFTER executing R file. Useful for zipping up results. Remember, you can only output ONE file. If you have multiple result files, you MUST zip them up.",
"class": "file",
"patterns": ["*.sh"],
"optional": true
},
{
"name": "input_file1",
"label": "Input file 1",
"class": "file",
"patterns": ["*.*"],
"optional": true
},
{
"name": "input_file2",
"label": "Input file 2",
"class": "file",
"patterns": ["*.*"],
"optional": true
},
{
"name": "input_file3",
"label": "Input file 3",
"class": "file",
"patterns": ["*.*"],
"optional": true
},
{
"name": "input_file4",
"label": "Input file 4",
"class": "file",
"patterns": ["*.*"],
"optional": true
},
{
"name": "input_file5",
"label": "Input file 5",
"class": "file",
"patterns": ["*.*"],
"optional": true
},
{
"name": "input_file6",
"label": "Input file 6",
"class": "file",
"patterns": ["*.*"],
"optional": true
},
{
"name": "input_file7",
"label": "Input file 7",
"class": "file",
"patterns": ["*.*"],
"optional": true
},
{
"name": "input_file8",
"label": "Input file 8",
"class": "file",
"patterns": ["*.*"],
"optional": true
},
{
"name": "input_file9",
"label": "Input file 9",
"class": "file",
"patterns": ["*.*"],
"optional": true
},
{
"name": "input_file10",
"label": "Input file 10",
"class": "file",
"patterns": ["*.*"],
"optional": true
},
{
"name": "debug",
"label": "Debug output",
"help": "Show debug information in command line mode. Set 0 to disable. The greater the number the more verbose the output.",
"class": "int",
"optional": true,
"default": 0
}
],
"outputSpec": [
{
"name": "results",
"class": "file"
}
],
"runSpec": {
"timeoutPolicy": {
"*": {
"days": 30
}
},
"systemRequirements": {
"main": {
"instanceType": "mem3_ssd1_x4"
}
},
"file": "src/execR.sh",
"release": "14.04",
"interpreter": "bash",
"distribution": "Ubuntu"
},
"details": {
"contactEmail": "robbyjo@gmail.com",
"upstreamVersion": "0.0.1",
"upstreamAuthor": "Roby Joehanes",
"upstreamUrl": "https://github.com/robbyjo/execR",
"upstreamLicenses": ["GPLv3"]
},
"access": {
"network": [
"*"
]
},
"authorizedUsers" : [
"PUBLIC"
]
}