forked from NCATS-Tangerine/translator-api-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
smartapi.yaml
1093 lines (1079 loc) · 41 KB
/
smartapi.yaml
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
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.0.3
info:
contact:
email: guangrong.qin@isbscience.org
name: Guangrong Qin
x-role: responsible developer
description: >-
Documentation of the BioThings API for Translator Multiomics Team's
BigGIM-DrugResponse KP. This KP contains associations from multiple sources.
termsOfService: https://biothings.io/about
title: Multiomics BigGIM-DrugResponse KP API
version: '2.0'
x-translator:
infores: "infores:biothings-multiomics-biggim-drugresponse"
component: KP
team:
- Multiomics Provider
- Service Provider
biolink-version: "3.1.1"
servers:
- description: Encrypted Production server
url: https://biothings.ncats.io/biggim_drugresponse_kp
x-maturity: production
- description: Production server
url: http://biothings.ncats.io/biggim_drugresponse_kp
x-maturity: production
tags:
- name: gene
- name: disease
- name: chemical
- name: association
- name: annotation
- name: query
- name: translator
- name: biothings
- name: biothings_graph
paths:
"/association/{id}":
get:
description: >-
By default, this will return the complete association in JSON format. If the input is not valid,
404 (NOT FOUND) will be returned.
Optionally, you can pass a "fields" parameter to return only the annotation you want
(by filtering returned object fields). "fields" accepts any attributes (a.k.a fields) available
from the association. Multiple attributes should be separated by commas. If an attribute is not
available for a specific association, it will be ignored. Note that the attribute names are
case-sensitive.
Just like the query service, you can also pass a "callback" parameter to make a JSONP call.
parameters:
- name: id
in: path
required: true
example: "Disease_biolink:has_biomarker_Gene_GDSC_cancer_specific_signatures.csv_2998"
schema:
type: string
- "$ref": "#/components/parameters/fields"
- "$ref": "#/components/parameters/callback"
- "$ref": "#/components/parameters/email"
## this is useful even when it's not noted in the docs
- "$ref": "#/components/parameters/size"
## these are noted in the /spec endpoint; commenting out for now
# - "$ref": "#/components/parameters/raw"
# - "$ref": "#/components/parameters/rawquery"
# - "$ref": "#/components/parameters/dotfield"
# - "$ref": "#/components/parameters/_sorted"
# - "$ref": "#/components/parameters/always_list"
# - "$ref": "#/components/parameters/allow_null"
# - "$ref": "#/components/parameters/format"
responses:
'200':
description: A 200 status code indicates a successful query, and is accompanied by the query response payload.
## commenting out schemas and other status codes for now
# content:
# application/json:
# schema:
# $ref: '#/components/schemas/Association'
# '404':
# description: A response indicating an unknown association ID
tags:
- association
"/association":
post:
description: >-
Although making simple GET requests above to our service is sufficient in most use cases,
there are some times you might find it easier to batch query (e.g., retrieving multiple associations).
Fortunately, you can also make batch queries via POST requests when you need to.
parameters:
- name: ids
description: >-
Accepts multiple association ids separated by commas. Note that currently we only take ids up to
1000 maximum, the rest will be omitted.
The request body can also be used to provide these ids.
in: query
## setting to false since putting this info in the request body seems to work as well
required: false
schema:
type: string
- "$ref": "#/components/parameters/fields"
- "$ref": "#/components/parameters/email"
## this is useful even when it's not noted in the docs
- "$ref": "#/components/parameters/size"
## these are noted in the /spec endpoint; commenting out for now
# - "$ref": "#/components/parameters/raw"
# - "$ref": "#/components/parameters/rawquery"
# - "$ref": "#/components/parameters/dotfield"
# - "$ref": "#/components/parameters/_sorted"
# - "$ref": "#/components/parameters/always_list"
# - "$ref": "#/components/parameters/allow_null"
# - "$ref": "#/components/parameters/format"
requestBody:
content:
application/json:
example:
ids:
- "Disease_biolink:has_biomarker_Gene_GDSC_cancer_specific_signatures.csv_2998"
- "Protein_biolink:physically_interacts_with_Protein_Biogrid_formated.csv_170247"
schema:
type: object
properties:
ids:
description: >-
Accepts multiple association ids. Note that currently we only take the input ids
up to 1000 maximum, the rest will be omitted.
type: array
items:
type: string
responses:
'200':
description: A 200 status code indicates a successful query, and is accompanied by the query response payload.
tags:
- association
"/metadata":
get:
description: Get metadata about the data available from the API
## these are noted in the https://mychem.info/v1/spec endpoint; commenting out for now
# parameters:
# - "$ref": "#/components/parameters/format"
# - "$ref": "#/components/parameters/raw"
responses:
'200':
description: A 200 status code indicates a successful query, and is accompanied by the query response payload.
tags:
- metadata
"/metadata/fields":
get:
description: Get metadata about the data fields available from the API
## these are noted in the https://mychem.info/v1/spec endpoint; commenting out for now
# parameters:
# - "$ref": "#/components/parameters/format"
# - "$ref": "#/components/parameters/raw"
# - "$ref": "#/components/parameters/search"
# - "$ref": "#/components/parameters/prefix"
responses:
'200':
description: A 200 status code indicates a successful query, and is accompanied by the query response payload.
tags:
- metadata
"/query":
get:
description: >-
Query service. In the output, "total" in the output gives the total number
of matching hits, while the actual hits are returned under "hits" field.
parameters:
- name: q
description: >-
Required, passing user query. The detailed query syntax for parameter is explained
[here for a core BioThings
API](https://docs.mychem.info/en/latest/doc/chem_query_service.html#query-syntax).
in: query
required: true
example: subject.NCBIGene:"NCBIGene:91526"
schema:
type: string
- "$ref": "#/components/parameters/fields"
- "$ref": "#/components/parameters/size"
- "$ref": "#/components/parameters/from"
- "$ref": "#/components/parameters/fetch_all"
- "$ref": "#/components/parameters/scroll_id"
- "$ref": "#/components/parameters/sort"
- "$ref": "#/components/parameters/facets"
- "$ref": "#/components/parameters/facet_size"
- "$ref": "#/components/parameters/callback"
- "$ref": "#/components/parameters/dotfield"
- "$ref": "#/components/parameters/email"
## these are noted in the /spec endpoint; commenting out for now
# - "$ref": "#/components/parameters/aggs"
# - "$ref": "#/components/parameters/userquery"
# - "$ref": "#/components/parameters/explain"
# - "$ref": "#/components/parameters/raw"
# - "$ref": "#/components/parameters/rawquery"
# - "$ref": "#/components/parameters/_sorted"
# - "$ref": "#/components/parameters/always_list"
# - "$ref": "#/components/parameters/allow_null"
# - "$ref": "#/components/parameters/format"
responses:
'200':
description: A 200 status code indicates a successful query, and is accompanied by the query response payload.
## commenting out schemas and other status codes for now
# content:
# application/json:
# schema:
# "$ref": "#/components/schemas/QueryResult"
# '400':
# content:
# application/json:
# schema:
# "$ref": "#/components/schemas/ErrorResult"
# description: A response indicating an improperly formatted query
# summary: Make queries and return matching gene hits. Supports JSONP and CORS
# as well.
tags:
- query
post:
description: >-
Although making simple GET requests above to our query service is sufficient for most use cases,
there are times you might find it more efficient to make batch queries (e.g., retrieving data
for multiple inputs). Fortunately, you can also make batch queries via POST requests when you need to.
The "query” field in the returned object indicates the matching query term. If a query term has no match,
it will return with a “notfound” field with the value “true”.
parameters:
- name: q
description: >-
Accepts multiple values separated by commas. Note that currently we only take the input values up to 1000
maximum, the rest will be omitted.
The request body can also be used to provide these ids.
in: query
## setting to false since putting this info in the request body seems to work as well
required: false
schema:
type: array
items:
type: string
- name: scopes
description: >-
Optional, specify one or more fields (separated by commas) to search. Default: _id
The request body can also be used to provide this information.
in: query
## setting to false since putting this info in the request body seems to work as well
required: false
schema:
type: string
- "$ref": "#/components/parameters/fields"
- "$ref": "#/components/parameters/email"
## this is useful even when it's not noted in the docs
- "$ref": "#/components/parameters/size"
- "$ref": "#/components/parameters/from"
- "$ref": "#/components/parameters/fetch_all"
- "$ref": "#/components/parameters/scroll_id"
## these are noted in the https://mychem.info/v1/spec endpoint; commenting out for now
# - "$ref": "#/components/parameters/sort"
# - "$ref": "#/components/parameters/raw"
# - "$ref": "#/components/parameters/rawquery"
# - "$ref": "#/components/parameters/dotfield"
# - "$ref": "#/components/parameters/_sorted"
# - "$ref": "#/components/parameters/always_list"
# - "$ref": "#/components/parameters/allow_null"
# - "$ref": "#/components/parameters/format"
requestBody:
content:
application/json:
example:
q:
- "NCBIGene:91526"
- "NCBIGene:5788"
scopes:
- "subject.NCBIGene"
schema:
type: object
properties:
q:
description: >-
Accepts multiple values separated by commas. Note that currently we only take the input values
up to 1000 maximum, the rest will be omitted.
type: array
items:
type: string
scopes:
description: >-
Specify one or more fields (separated by commas) to search. Default: _id
type: array
items:
type: string
responses:
'200':
description: A 200 status code indicates a successful query, and is accompanied by the query response payload.
## commenting out schemas and other status codes for now
# content:
# application/json:
# schema:
# "$ref": "#/components/schemas/QueryPOSTResult"
# '400':
# content:
# application/json:
# schema:
# "$ref": "#/components/schemas/ErrorResult"
# description: A response indicating an improperly formatted query
# summary: Make batch gene queries and return matching gene hits
tags:
- query
x-bte-kgs-operations:
- $ref: '#/components/x-bte-kgs-operations/gene-sensitivity-chem'
- $ref: '#/components/x-bte-kgs-operations/gene-sensitivity-chem-rev'
- $ref: '#/components/x-bte-kgs-operations/gene-resistance-chem'
- $ref: '#/components/x-bte-kgs-operations/gene-resistance-chem-rev'
- $ref: '#/components/x-bte-kgs-operations/gene-associated-disease'
- $ref: '#/components/x-bte-kgs-operations/gene-associated-disease-rev'
- $ref: '#/components/x-bte-kgs-operations/disease-biomarker-gene'
- $ref: '#/components/x-bte-kgs-operations/disease-biomarker-gene-rev'
- $ref: '#/components/x-bte-kgs-operations/chem-targets-gene'
- $ref: '#/components/x-bte-kgs-operations/chem-targets-gene-rev'
- $ref: '#/components/x-bte-kgs-operations/gene-physicallyInteracts-gene'
- $ref: '#/components/x-bte-kgs-operations/gene-physicallyInteracts-gene-rev'
- $ref: '#/components/x-bte-kgs-operations/gene-geneticallyInteracts-gene'
- $ref: '#/components/x-bte-kgs-operations/gene-geneticallyInteracts-gene-rev'
- $ref: '#/components/x-bte-kgs-operations/gene-negativelyCorrelated-gene'
- $ref: '#/components/x-bte-kgs-operations/gene-negativelyCorrelated-gene-rev'
- $ref: '#/components/x-bte-kgs-operations/gene-positivelyCorrelated-gene'
- $ref: '#/components/x-bte-kgs-operations/gene-positivelyCorrelated-gene-rev'
components:
parameters:
callback:
name: callback
description: >-
Optional, you can pass a "callback" parameter to make a JSONP call.
in: query
required: false
schema:
type: string
dotfield:
name: dotfield
description: >-
Optional, can be used to control the format of the returned object.
If "dotfield" is true, the returned data object is returned flattened (no nested objects)
using dotfield notation for key names. Default: false.
in: query
required: false
schema:
type: boolean
default: false
email:
name: email
description: >-
Optional, if you are regular users of our services, we encourage you to provide us an email,
so that we can better track the usage or follow up with you.
in: query
required: false
schema:
type: string
facet_size:
name: facet_size
description: >-
Optional, an integer (1 <= facet_size <= 1000) that specifies how many buckets to return in a
[faceted query](https://docs.mychem.info/en/latest/doc/chem_query_service.html?highlight=from#faceted-queries).
in: query
required: false
schema:
type: integer
default: 10
facets:
name: facets
description: >-
Optional, a single field or comma-separated fields to return facets, can only be used on non-free text fields.
E.g. “facets=chembl.molecule_properties.full_mwt”. See [examples of faceted queries for a core BioThings
API](https://docs.mychem.info/en/latest/doc/chem_query_service.html?highlight=from#faceted-queries).
in: query
required: false
schema:
type: array
items:
type: string
fetch_all:
name: fetch_all
description: >-
Optional, a boolean, which when TRUE, allows fast retrieval of all unsorted query hits.
The return object contains a _scroll_id field, which when passed as a parameter to the query endpoint
(see the scroll_id parameter), returns the next 1000 query results. Setting fetch_all = TRUE causes
the results to be inherently unsorted, therefore the sort parameter is ignored. For more information,
see [examples using fetch_all for a core BioThings
API](https://docs.mychem.info/en/latest/doc/chem_query_service.html?highlight=from#scrolling-queries).
Default: FALSE.
in: query
required: false
schema:
type: boolean
default: false
fields:
name: fields
description: >-
Optional, can be a comma-separated list to limit the fields returned from the object.
If "fields=all", all available fields will be returned.
Note that it supports dot notation as well, e.g., you can pass "chebi.name".
Default: "fields=all".
The parameter "filter" is an alias for this parameter.
in: query
required: false
schema:
type: string
default: all
from:
name: from
description: >-
Optional, the number of matching hits to skip, starting from 0. Default: 0.
in: query
required: false
schema:
type: integer
default: 0
scroll_id:
name: scroll_id
description: >-
Optional, a string containing the _scroll_id returned from a query request with fetch_all = TRUE.
Supplying a valid scroll_id will return the next 1000 unordered results. If the next results are
not obtained within 1 minute of the previous set of results, the scroll_id becomes stale, and a
new one must be obtained with another query request with fetch_all = TRUE. All other parameters are
ignored when the scroll_id parameter is supplied. For more information see [examples using scroll_id
for a core BioThings
API](https://docs.mychem.info/en/latest/doc/chem_query_service.html?highlight=from#scrolling-queries).
in: query
required: false
schema:
type: string
size:
name: size
description: >-
Optional, the maximum number of matching hits to return (with a cap of 1000 at the moment). Default: 10.
The combination of "size" and "from" parameters can be used to get paging for a large query.
in: query
required: false
schema:
type: integer
default: 10
sort:
name: sort
description: >-
Optional, the comma-separated fields to sort on. Prefix with "-" for descending order, otherwise in ascending order.
Default: sort by matching scores in descending order.
in: query
required: false
schema:
type: array
items:
type: string
## these are noted in the https://mychem.info/v1/spec endpoint; commenting out for now
# _sorted:
# name: _sorted
# in: query
# required: false
# schema:
# type: boolean
# default: true
# aggs:
# name: aggs
# in: query
# required: false
# schema:
# type: array
# items:
# type: string
# allow_null:
# name: allow_null
# in: query
# required: false
# schema:
# type: array
# items:
# type: string
# always_list:
# name: always_list
# in: query
# required: false
# schema:
# type: array
# items:
# type: string
# explain:
# name: explain
# in: query
# required: false
# schema:
# type: boolean
# format:
# name: format
# description: 'controls output format of server response, currently supports:
# "json", "jsonld", "html". Type: string. Default: json.'
# in: query
# required: false
# schema:
# type: string
# default: json
# prefix:
# name: prefix
# in: query
# required: false
# schema:
# type: string
# raw:
# name: raw
# in: query
# required: false
# schema:
# type: boolean
# rawquery:
# name: rawquery
# in: query
# required: false
# schema:
# type: boolean
# search:
# name: search
# in: query
# required: false
# schema:
# type: string
# userquery:
# name: userquery
# in: query
# required: false
# schema:
# type: string
## commenting out schemas and other status codes for now
# schemas:
# Association:
# properties:
# _id:
# type: string
# required:
# - _id
# type: object
# ErrorResult:
# properties:
# message:
# type: string
# success:
# type: boolean
# type: object
# QueryPOSTResult:
# items:
# allOf:
# - $ref: '#/components/schemas/Association'
# - properties:
# _score:
# format: float
# type: number
# query:
# type: string
# type: object
# type: array
# QueryResult:
# properties:
# hits:
# items:
# $ref: '#/components/schemas/Association'
# type: array
# max_score:
# format: float
# type: number
# took:
# type: integer
# total:
# type: integer
# type: object
# int64_or_array:
# oneOf:
# - items:
# format: int64
# type: integer
# type: array
# - format: int64
# type: integer
# string_or_array:
# oneOf:
# - items:
# type: string
# type: array
# - type: string
x-bte-kgs-operations:
## in the API's records:
## - subjects and objects can be Gene (NCBIGene), SmallMolecule (PUBCHEM.COMPOUND), Disease (MONDO)
## - predicates can be associated_with_resistance_to, associated_with_sensitivity_to
## gene_associated_with_condition, has_biomarker, physically_interacts_with,
## physically_interacts_with, genetically_interacts_with,
## negatively_correlated_with, positively_correlated_with
## - BTE automatically puts prefix on MONDO IDs, but prefix has to be added to other ID inputs
## - currently, BTE will also accept response with Translator-prefix (api-response-transform module).
## - joinSafe is only needed if the delimiter isn't a comma
gene-sensitivity-chem:
## https://biothings.ncats.io/biggim_drugresponse_kp/query?q=predicate:"biolink:associated_with_sensitivity_to"
## 95994 records
- supportBatch: true
useTemplating: true ## flag to say templating is being used below
inputs:
- id: NCBIGene #biolink prefix for id
semantic: Gene #category of id
requestBodyType: object
requestBody:
body: >-
{
"q": [ {{ queryInputs | replPrefix('NCBIGene') | wrap( '["' , '","biolink:associated_with_sensitivity_to"]') }} ],
"scopes": ["subject.NCBIGene", "predicate"]
}
parameters:
fields: object.pubchem_compound,attributes,sources #field to return
size: 1000
outputs:
- id: "PUBCHEM.COMPOUND" #
semantic: SmallMolecule
predicate: associated_with_sensitivity_to
response_mapping:
"$ref": "#/components/x-bte-response-mapping/pubchem-object"
# testExamples:
# - qInput: "NCBIGene:25878" ## MXRA5
# oneOutput: "PUBCHEM.COMPOUND:135539077" ## THZ-2-102-1 (Luminespib)
gene-sensitivity-chem-rev:
- supportBatch: true
useTemplating: true ## flag to say templating is being used below
inputs:
- id: "PUBCHEM.COMPOUND"
semantic: SmallMolecule
requestBodyType: object
requestBody:
body: >-
{
"q": [ {{ queryInputs | replPrefix('PUBCHEM.COMPOUND') | wrap( '["' , '","biolink:associated_with_sensitivity_to"]') }} ],
"scopes": ["object.pubchem_compound", "predicate"]
}
parameters:
fields: subject.NCBIGene,attributes,sources
size: 1000
outputs:
- id: NCBIGene
semantic: Gene
predicate: sensitivity_associated_with
response_mapping:
"$ref": "#/components/x-bte-response-mapping/ncbigene-subject"
# testExamples:
# - qInput: "PUBCHEM.COMPOUND:24856436" ## JNK-9L (Adavosertib)
# oneOutput: "NCBIGene:59352" ## LGR6
gene-resistance-chem:
## https://biothings.ncats.io/biggim_drugresponse_kp/query?q=predicate:"biolink:associated_with_resistance_to"
## 107719 records
- supportBatch: true
useTemplating: true ## flag to say templating is being used below
inputs:
- id: NCBIGene
semantic: Gene
requestBodyType: object
requestBody:
body: >-
{
"q": [ {{ queryInputs | replPrefix('NCBIGene') | wrap( '["' , '","biolink:associated_with_resistance_to"]') }} ],
"scopes": ["subject.NCBIGene", "predicate"]
}
parameters:
fields: object.pubchem_compound,attributes,sources
size: 1000
outputs:
- id: "PUBCHEM.COMPOUND"
semantic: SmallMolecule
predicate: associated_with_resistance_to
response_mapping:
"$ref": "#/components/x-bte-response-mapping/pubchem-object"
# testExamples:
# - qInput: "NCBIGene:5724" ## PTAFR
# oneOutput: "PUBCHEM.COMPOUND:4261" ## Elesclomol (Entinostat)
gene-resistance-chem-rev:
- supportBatch: true
useTemplating: true ## flag to say templating is being used below
inputs:
- id: "PUBCHEM.COMPOUND"
semantic: SmallMolecule
requestBodyType: object
requestBody:
body: >-
{
"q": [ {{ queryInputs | replPrefix('PUBCHEM.COMPOUND') | wrap( '["' , '","biolink:associated_with_resistance_to"]') }} ],
"scopes": ["object.pubchem_compound", "predicate"]
}
parameters:
fields: subject.NCBIGene,attributes,sources
size: 1000
outputs:
- id: NCBIGene
semantic: Gene
predicate: resistance_associated_with
response_mapping:
"$ref": "#/components/x-bte-response-mapping/ncbigene-subject"
# testExamples:
# - qInput: "PUBCHEM.COMPOUND:46844147" ## AZD8055 (Erk5-IN-1)
# oneOutput: "NCBIGene:26119" ## LDLRAP1
gene-associated-disease:
## https://biothings.ncats.io/biggim_drugresponse_kp/query?q=predicate:"biolink:gene_associated_with_condition"
## 922 records
- supportBatch: true
useTemplating: true ## flag to say templating is being used below
inputs:
- id: NCBIGene
semantic: Gene
requestBodyType: object
requestBody:
body: >-
{
"q": [ {{ queryInputs | replPrefix('NCBIGene') | wrap( '["' , '","biolink:gene_associated_with_condition"]') }} ],
"scopes": ["subject.NCBIGene", "predicate"]
}
parameters:
fields: object.MONDO,attributes,sources
size: 1000
outputs:
- id: MONDO
semantic: Disease
predicate: gene_associated_with_condition
response_mapping:
"$ref": "#/components/x-bte-response-mapping/mondo-object"
# testExamples:
# - qInput: "NCBIGene:10459" ## MAD2L2
# oneOutput: "MONDO:0019391" ## Fanconi anemia
gene-associated-disease-rev:
- supportBatch: true
useTemplating: true ## flag to say templating is being used below
inputs:
- id: MONDO
semantic: Disease
requestBodyType: object
requestBody:
body: >-
{
"q": [ {{ queryInputs | replPrefix('MONDO') | wrap( '["' , '","biolink:gene_associated_with_condition"]') }} ],
"scopes": ["object.MONDO", "predicate"]
}
parameters:
fields: subject.NCBIGene,attributes,sources
size: 1000
outputs:
- id: NCBIGene
semantic: Gene
predicate: condition_associated_with_gene
response_mapping:
"$ref": "#/components/x-bte-response-mapping/ncbigene-subject"
# testExamples:
# - qInput: "MONDO:0004056" ## TCGA-BLCA (bladder papillary urothelial carcinoma)
# oneOutput: "NCBIGene:7157" ## TP53
disease-biomarker-gene:
## https://biothings.ncats.io/biggim_drugresponse_kp/query?q=predicate:"biolink:has_biomarker"
## 13811 records
- supportBatch: true
useTemplating: true ## flag to say templating is being used below
inputs:
- id: MONDO
semantic: Disease
requestBodyType: object
requestBody:
body: >-
{
"q": [ {{ queryInputs | replPrefix('MONDO') | wrap( '["' , '","biolink:has_biomarker"]') }} ],
"scopes": ["subject.MONDO", "predicate"]
}
parameters:
fields: object.NCBIGene,attributes,sources
size: 1000
outputs:
- id: NCBIGene
semantic: Gene
predicate: has_biomarker
response_mapping:
"$ref": "#/components/x-bte-response-mapping/ncbigene-object"
# testExamples:
# - qInput: "MONDO:0005097" ## LUSC (squamous cell lung carcinoma)
# oneOutput: "NCBIGene:131" ## ADH7
disease-biomarker-gene-rev:
- supportBatch: true
useTemplating: true ## flag to say templating is being used below
inputs:
- id: NCBIGene
semantic: Gene
requestBodyType: object
requestBody:
body: >-
{
"q": [ {{ queryInputs | replPrefix('NCBIGene') | wrap( '["' , '","biolink:has_biomarker"]') }} ],
"scopes": ["object.NCBIGene", "predicate"]
}
parameters:
fields: subject.MONDO,attributes,sources
size: 1000
outputs:
- id: MONDO
semantic: Disease
predicate: biomarker_for
response_mapping:
"$ref": "#/components/x-bte-response-mapping/mondo-subject"
# testExamples:
# - qInput: "NCBIGene:1145" ## CHRNE
# oneOutput: "MONDO:0018874" ## LAML (acute myeloid leukemia)
chem-targets-gene:
## https://biothings.ncats.io/biggim_drugresponse_kp/query?q=predicate:"biolink:physically_interacts_with"
## 14806 records
- supportBatch: true
useTemplating: true ## flag to say templating is being used below
inputs:
- id: "PUBCHEM.COMPOUND"
semantic: SmallMolecule
requestBodyType: object
requestBody:
body: >-
{
"q": [ {{ queryInputs | replPrefix('PUBCHEM.COMPOUND') | wrap( '["' , '","biolink:physically_interacts_with"]') }} ],
"scopes": ["subject.pubchem_compound", "predicate"]
}
parameters:
fields: object.NCBIGene,attributes,sources
size: 1000
outputs:
- id: NCBIGene
semantic: Gene
predicate: physically_interacts_with
response_mapping:
"$ref": "#/components/x-bte-response-mapping/ncbigene-object"
# testExamples:
# - qInput: "PUBCHEM.COMPOUND:444" ## Bupropion
# oneOutput: "NCBIGene:6530" ## SLC6A2
chem-targets-gene-rev:
- supportBatch: true
useTemplating: true ## flag to say templating is being used below
inputs:
- id: NCBIGene
semantic: Gene
requestBodyType: object
requestBody:
body: >-
{
"q": [ {{ queryInputs | replPrefix('NCBIGene') | wrap( '["' , '","biolink:physically_interacts_with"]') }} ],
"scopes": ["object.NCBIGene", "predicate"]
}
parameters:
fields: subject.pubchem_compound,attributes,sources
size: 1000
outputs:
- id: "PUBCHEM.COMPOUND"
semantic: SmallMolecule
predicate: physically_interacts_with #change predicate
response_mapping:
"$ref": "#/components/x-bte-response-mapping/pubchem-subject"
# testExamples:
# - qInput: "NCBIGene:8424" ## BBOX1
# oneOutput: "PUBCHEM.COMPOUND:5455" ## Thiram
gene-physicallyInteracts-gene:
## https://biothings.ncats.io/biggim_drugresponse_kp/query?q=predicate:"biolink:physically_interacts_with"
## 888994 records
- supportBatch: true
useTemplating: true ## flag to say templating is being used below
inputs:
- id: NCBIGene
semantic: Gene
requestBodyType: object
requestBody:
body: >-
{
"q": [ {{ queryInputs | replPrefix('NCBIGene') | wrap( '["' , '","biolink:physically_interacts_with"]') }} ],
"scopes": ["subject.NCBIGene", "predicate"]
}
parameters:
fields: object.NCBIGene,attributes,sources
size: 1000
outputs:
- id: NCBIGene
semantic: Gene
predicate: physically_interacts_with
response_mapping:
"$ref": "#/components/x-bte-response-mapping/ncbigene-object"
# testExamples:
# - qInput: "NCBIGene:9282" ## MED14
# oneOutput: "NCBIGene:55588" ## MED29
gene-physicallyInteracts-gene-rev:
- supportBatch: true
useTemplating: true ## flag to say templating is being used below
inputs:
- id: NCBIGene
semantic: Gene
requestBodyType: object
requestBody:
body: >-
{
"q": [ {{ queryInputs | replPrefix('NCBIGene') | wrap( '["' , '","biolink:physically_interacts_with"]') }} ],
"scopes": ["object.NCBIGene", "predicate"]
}
parameters:
fields: subject.NCBIGene,attributes,sources
size: 1000
outputs:
- id: NCBIGene
semantic: Gene
predicate: physically_interacts_with
response_mapping:
"$ref": "#/components/x-bte-response-mapping/ncbigene-subject"
# testExamples:
# - qInput: "NCBIGene:6874" ## TAF4
# oneOutput: "NCBIGene:6881" ## TAF10
gene-geneticallyInteracts-gene:
## https://biothings.ncats.io/biggim_drugresponse_kp/query?q=predicate:"biolink:genetically_interacts_with"
## 10754 records
- supportBatch: true
useTemplating: true ## flag to say templating is being used below
inputs:
- id: NCBIGene
semantic: Gene
requestBodyType: object
requestBody:
body: >-
{
"q": [ {{ queryInputs | replPrefix('NCBIGene') | wrap( '["' , '","biolink:genetically_interacts_with"]') }} ],
"scopes": ["subject.NCBIGene", "predicate"]
}
parameters:
fields: object.NCBIGene,attributes,sources
size: 1000
outputs:
- id: NCBIGene
semantic: Gene
predicate: genetically_interacts_with
response_mapping:
"$ref": "#/components/x-bte-response-mapping/ncbigene-object"
# testExamples:
# - qInput: "NCBIGene:5980" ## REV3L
# oneOutput: "NCBIGene:7295" ## TXN
gene-geneticallyInteracts-gene-rev:
- supportBatch: true
useTemplating: true ## flag to say templating is being used below
inputs:
- id: NCBIGene
semantic: Gene
requestBodyType: object
requestBody:
body: >-
{
"q": [ {{ queryInputs | replPrefix('NCBIGene') | wrap( '["' , '","biolink:genetically_interacts_with"]') }} ],
"scopes": ["object.NCBIGene", "predicate"]
}
parameters:
fields: subject.NCBIGene,attributes,sources
size: 1000
outputs:
- id: NCBIGene
semantic: Gene
predicate: genetically_interacts_with
response_mapping:
"$ref": "#/components/x-bte-response-mapping/ncbigene-subject"
# testExamples:
# - qInput: "NCBIGene:2081" ## ERN1
# oneOutput: "NCBIGene:4609" ## MYC
gene-negativelyCorrelated-gene:
## https://biothings.ncats.io/biggim_drugresponse_kp/query?q=predicate:"biolink:negatively_correlated_with"
## 565 records
- supportBatch: true
useTemplating: true ## flag to say templating is being used below
inputs:
- id: NCBIGene
semantic: Gene
requestBodyType: object
requestBody:
body: >-
{
"q": [ {{ queryInputs | replPrefix('NCBIGene') | wrap( '["' , '","biolink:negatively_correlated_with"]') }} ],
"scopes": ["subject.NCBIGene", "predicate"]
}
parameters:
fields: object.NCBIGene,attributes,sources
size: 1000
outputs:
- id: NCBIGene
semantic: Gene
predicate: negatively_correlated_with
response_mapping:
"$ref": "#/components/x-bte-response-mapping/ncbigene-object"
# testExamples:
# - qInput: "NCBIGene:823" ## CAPN1
# oneOutput: "NCBIGene:4539" ## MT-ND4L (ND4L)
gene-negativelyCorrelated-gene-rev:
- supportBatch: true
useTemplating: true ## flag to say templating is being used below
inputs:
- id: NCBIGene
semantic: Gene
requestBodyType: object
requestBody:
body: >-
{