-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstats-api.yaml
More file actions
441 lines (416 loc) · 13.4 KB
/
stats-api.yaml
File metadata and controls
441 lines (416 loc) · 13.4 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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
openapi: '3.0.0'
info:
title: iReceptorPlus Statistics API
version: 0.3.0
description: >
Statistics API for the iReceptor Plus platform.
contact:
name: iReceptor Plus
url: 'https://www.ireceptor-plus.com'
email: info@ireceptor-plus.com
servers:
- url: http://covid19-1.ireceptor.org/irplus/v1/stats
description: iReceptor COVID-19 repository (COVID19-1)
variables:
basePath:
default: /irplus/v1/stats
- url: https://ipa1.ireceptor.org/irplus/v1/stats
description: iReceptor Public Archive (IPA1)
variables:
basePath:
default: /irplus/v1/stats
- url: https://vdj-staging.tacc.utexas.edu/irplus/v1/stats
description: VDJServer Staging repository
variables:
basePath:
default: /irplus/v1/stats
components:
schemas:
info_object:
type: object
description: Provides information about the service and API
properties:
title:
type: string
version:
type: string
description:
type: string
contact:
type: object
properties:
name:
type: string
url:
type: string
email:
type: string
count_array:
type: array
description: Array-based count representation
items:
type: object
properties:
key:
type: string
example: key
count:
type: integer
example: 10
# Service info object. This is the object returned by the /info request,
# and provides information about the API service and its attributes and capabilities
service_info_object:
description: Provides information about the API service and its attributes and capabilities.
allOf:
- $ref: '#/components/schemas/info_object'
- type: object
properties:
api:
$ref: '#/components/schemas/info_object'
repertoire_description_object:
type: object
required:
- repertoire_id
properties:
repertoire_id:
type: string
description: The reperotire on which to perform the statisitical analysis
example: REPID_4598
nullable: false
sample_processing_id:
type: string
description: >
The sample_processing_id on which to perform the analysis
If this is not provided then it all sample processing entities within
the repertoire are used to produce the requested statistical analysis.
example: SPID_1
nullable: false
data_processing_id:
type: string
description: >
The data processing ID on which to perform the analysis.
If this is not provided and there is more than one data processing entity attached to
the repertoire then the primary_annotation is used if one exists. If there is more than
one data processing entity and there is no primary annotation, then all data processing
entities within the repertoire are used to produce the requested statistical analysis.
example: DPID_1
nullable: false
repertoire_description_array:
type: array
description: Array of repertoires on which to perform a set of statisical analyses.
items:
type: object
description: Repertoire filtering parameters
properties:
repertoire:
$ref: '#/components/schemas/repertoire_description_object'
count_statistics_array:
type: array
description: The field to count on for this repertoire
items:
type: string
enum:
- rearrangement_count
- duplicate_count
- rearrangement_count_productive
- duplicate_count_productive
example:
- rearrangement_count
- duplicate_count
junction_statistics_array:
type: array
description: The types of junction length stats requested (one of amino acid or nucleotide length)
items:
type: string
enum:
- junction_aa_length
- junction_length
- junction_aa_length_productive
- junction_length_productive
example:
- junction_aa_length
- junction_length
- junction_aa_length_productive
- junction_length_productive
gene_statistics_array:
type: array
description: The types of gene usage stats requested (one of V,D, or J subgroup, gene, or allele)
items:
type: string
enum:
- v_subgroup_unique
- v_subgroup_exists
- v_subgroup_unique_productive
- v_subgroup_exists_productive
- v_gene_unique
- v_gene_exists
- v_gene_unique_productive
- v_gene_exists_productive
- v_call_unique
- v_call_exists
- v_call_unique_productive
- v_call_exists_productive
- d_subgroup_unique
- d_subgroup_exists
- d_subgroup_unique_productive
- d_subgroup_exists_productive
- d_gene_unique
- d_gene_exists
- d_gene_unique_productive
- d_gene_exists_productive
- d_call_unique
- d_call_exists
- d_call_unique_productive
- d_call_exists_productive
- j_subgroup_unique
- j_subgroup_exists
- j_subgroup_unique_productive
- j_subgroup_exists_productive
- j_gene_unique
- j_gene_exists
- j_gene_unique_productive
- j_gene_exists_productive
- j_call_unique
- j_call_exists
- j_call_unique_productive
- j_call_exists_productive
- c_subgroup_unique
- c_subgroup_exists
- c_subgroup_unique_productive
- c_subgroup_exists_productive
- c_gene_unique
- c_gene_exists
- c_gene_unique_productive
- c_gene_exists_productive
- c_call_unique
- c_call_exists
- c_call_unique_productive
- c_call_exists_productive
example:
- v_subgroup_unique
- v_gene_unique
- d_subgroup_unique
- d_gene_unique
- c_gene_unique
statistic_response_array:
type: array
description: Array of statistics that were requested.
items:
type: object
properties:
statistic_name:
type: string
description: >
The statistic name that the statistics data refers to. This is a controlled vocabulary string that is defined in the statistic call.
example: statistic_name
total:
type: integer
description: Total number of elements found in the repertoire.
example: 30
data:
$ref: '#/components/schemas/count_array'
stats_response_object:
type: object
properties:
Info:
$ref: '#/components/schemas/info_object'
Result:
type: array
description: Array of count objects, one per repertoire
items:
type: object
properties:
repertoire:
$ref: '#/components/schemas/repertoire_description_object'
statistics:
$ref: '#/components/schemas/statistic_response_array'
responses:
error_response:
description: General error response.
content:
application/json:
schema:
type: object
properties:
Info:
$ref: '#/components/schemas/info_object'
Message:
type: string
description: Detail about the error
count_response:
description: Response from a /count query
content:
application/json:
schema:
$ref: '#/components/schemas/stats_response_object'
junction_length_response:
description: Response from a /junction_length query
content:
application/json:
schema:
$ref: '#/components/schemas/stats_response_object'
gene_usage_response:
description: Response from a /gene_usage query
content:
application/json:
schema:
$ref: '#/components/schemas/stats_response_object'
securitySchemes:
user_authorization:
type: http
scheme: bearer
admin_authorization:
type: http
scheme: bearer
paths:
/:
get:
description: Service heartbeat.
operationId: get_service_status
responses:
'200':
description: Service is up.
content:
application/json:
schema:
type: object
properties:
result:
type: string
/info:
get:
description: Service information.
operationId: get_service_info
responses:
'200':
description: Success.
content:
application/json:
schema:
$ref: '#/components/schemas/service_info_object'
default:
$ref: '#/components/responses/error_response'
/rearrangement/count:
post:
description: Count of rearrangements for repertoire(s)
operationId: rearrangement_count
tags:
- rearrangements
requestBody:
content:
application/json:
schema:
properties:
repertoires:
$ref: '#/components/schemas/repertoire_description_array'
statistics:
$ref: '#/components/schemas/count_statistics_array'
responses:
'200':
$ref: '#/components/responses/count_response'
default:
$ref: '#/components/responses/error_response'
/rearrangement/junction_length:
post:
description: >
Perform a junction length distribution analysis for the rearrangements that belong to the specified repertoire (and/or sample_processing and data processing entity).
operationId: rearrangement_junction_length
tags:
- rearrangements
requestBody:
content:
application/json:
schema:
properties:
repertoires:
$ref: '#/components/schemas/repertoire_description_array'
statistics:
$ref: '#/components/schemas/junction_statistics_array'
responses:
'200':
$ref: '#/components/responses/junction_length_response'
default:
$ref: '#/components/responses/error_response'
/rearrangement/gene_usage:
post:
description: >
Perform a gene usage analysis for the rearrangementes that belong to the specified repertoire (and/or sample_processing and data_processing entity).
operationId: rearrangement_gene_usage
tags:
- rearrangements
requestBody:
content:
application/json:
schema:
properties:
repertoires:
$ref: '#/components/schemas/repertoire_description_array'
statistics:
$ref: '#/components/schemas/gene_statistics_array'
responses:
'200':
$ref: '#/components/responses/gene_usage_response'
default:
$ref: '#/components/responses/error_response'
/clone/count:
post:
description: Count of clones for repertoire(s)
operationId: clone_count
tags:
- clones
requestBody:
content:
application/json:
schema:
properties:
repertoires:
$ref: '#/components/schemas/repertoire_description_array'
statistics:
$ref: '#/components/schemas/count_statistics_array'
responses:
'200':
$ref: '#/components/responses/count_response'
default:
$ref: '#/components/responses/error_response'
/clone/junction_length:
post:
description: >
Perform a junction length distribution analysis for the clones that belong to the specified repertoire (and/or sample_processing and data processing entity).
operationId: clone_junction_length
tags:
- clones
requestBody:
content:
application/json:
schema:
properties:
repertoires:
$ref: '#/components/schemas/repertoire_description_array'
statistics:
$ref: '#/components/schemas/junction_statistics_array'
responses:
'200':
$ref: '#/components/responses/junction_length_response'
default:
$ref: '#/components/responses/error_response'
/clone/gene_usage:
post:
description: >
Perform a gene usage analysis for the clones that belong to the specified repertoires (and/or sample_processing and data_processing entity).
operationId: clone_gene_usage
tags:
- clones
requestBody:
content:
application/json:
schema:
properties:
repertoires:
$ref: '#/components/schemas/repertoire_description_array'
statistics:
$ref: '#/components/schemas/gene_statistics_array'
responses:
'200':
$ref: '#/components/responses/gene_usage_response'
default:
$ref: '#/components/responses/error_response'