-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAPISpecification.yaml
1015 lines (1013 loc) · 30 KB
/
APISpecification.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:
title: Ensembl Web Metadata API
description: Metadata API for beta.ensembl.org
contact:
email: [email protected]
version: 0.0.1
servers:
- url: https://beta.ensembl.org
tags:
- name: api
description: Ensembl Web Metadata API
paths:
/api/metadata/genome/{genome_id_or_slug}/explain:
get:
description: Satisfies client's need to disambiguate a string that is part of url pathname
and that can be either a genome id, or a genome tag. Genome ids are used to communicate
with Ensembl apis; but genome tag only serves the purpose of keeping the url pretty and stable.
parameters:
- name: genome_id_or_slug
in: path
required: true
schema:
type: string
default: grch38
responses:
'200':
description: Successful operation
content:
application/json:
schema:
$ref: '#/components/schemas/BriefGenomeDetails'
'404':
$ref: '#/components/responses/404NotFound'
'500':
$ref: '#/components/responses/500InternalServerError'
/api/metadata/genome/{genome_id}/stats:
get:
tags:
- api
summary: Summary statistics for a genome
description: Summary statistics for a genome
parameters:
- name: genome_id
in: path
required: true
schema:
type: string
default: a7335667-93e7-11ec-a39d-005056b38ce3
responses:
'200':
description: Successful operation
content:
application/json:
schema:
type: object
properties:
genome_stats:
$ref: '#/components/schemas/GenomeStats'
'500':
$ref: '#/components/responses/500InternalServerError'
/api/metadata/genome/{genome_id}/details:
get:
tags:
- api
description: Detailed information about a genome
parameters:
- name: genome_id
in: path
required: true
schema:
type: string
default: a7335667-93e7-11ec-a39d-005056b38ce3
responses:
'200':
description: Successful operation
content:
application/json:
schema:
$ref: '#/components/schemas/GenomeDetails'
'404':
description: Genome not found
content:
application/json:
schema:
type: object
properties:
message:
type: string
example: "Could not find details for a7335667-93e7-11ec-a39d-005056b38ce3"
'500':
$ref: '#/components/responses/500InternalServerError'
/api/metadata/genome/{genome_id}/example_objects:
get:
description: Returns a list of example objects (gene, variant, location, etc.) for a genome.
parameters:
- name: genome_id
in: path
required: true
schema:
type: string
default: a7335667-93e7-11ec-a39d-005056b38ce3
responses:
'200':
description: successful operation
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/ExampleObject'
'404':
description: Genome not found
content:
application/json:
schema:
type: object
properties:
message:
type: string
example: "Could not find example objects for a7335667-93e7-11ec-a39d-005056b38ce3"
'500':
$ref: '#/components/responses/500InternalServerError'
/api/metadata/genome/{genome_id}/karyotype:
get:
summary: Returns a list of top-level regions included in the organism's karyotype
parameters:
- name: genome_id
in: path
required: true
schema:
type: string
example: 3704ceb1-948d-11ec-a39d-005056b38ce3
responses:
'200':
description: successful operation
content:
application/json:
schema:
$ref: '#/components/schemas/Karyotype'
'500':
$ref: '#/components/responses/500InternalServerError'
/api/metadata/genome/{genome_id}/ftplinks:
get:
summary: Returns a list of FTP download links for the specified genome
parameters:
- name: genome_id
in: path
required: true
schema:
type: string
example: 3704ceb1-948d-11ec-a39d-005056b38ce3
responses:
'200':
description: Successful operation
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/FTPLink'
'500':
$ref: '#/components/responses/500InternalServerError'
/api/metadata/genome/{genome_id}/checksum/{region_name}:
get:
summary: Returns a checksum for the specified top-level region
parameters:
- name: genome_id
in: path
required: true
schema:
type: string
example: 3704ceb1-948d-11ec-a39d-005056b38ce3
- name: region_name
in: path
required: true
schema:
type: string
example: "13"
responses:
'200':
description: Successful operation
content:
text/plain:
schema:
type: string
example: 428d56c3fc01ad3a8db49830fb587625
'404':
description: Region not found
content: {}
'500':
$ref: '#/components/responses/500InternalServerError'
/api/metadata/validate_location:
get:
summary: Checks validity of genomic location provided by user
parameters:
- name: genome_id
in: query
required: true
schema:
type: string
example: 3704ceb1-948d-11ec-a39d-005056b38ce3
- name: location
in: query
description: Genomic location for validation
required: true
schema:
type: string
example: 1:10000-1000000
responses:
'200':
description: location validation information (location can be either valid or invalid)
content:
application/json:
schema:
$ref: '#/components/schemas/LocationValidationResponse'
'500':
$ref: '#/components/responses/500InternalServerError'
/api/metadata/popular_species:
get:
tags:
- api
description: List of 42 groups of genomes related to popular species
responses:
'200':
description: successful operation
content:
application/json:
schema:
type: object
properties:
popular_species:
type: array
items:
$ref: '#/components/schemas/PopularSpecies'
'500':
$ref: '#/components/responses/500InternalServerError'
/api/metadata/genome/{genome_id}/dataset/{dataset_type}/attributes:
get:
description: Returns a list of attributes of a given dataset of a genome.
parameters:
- in: query
name: attribute_names
schema:
type: array
- name: genome_id
in: path
required: true
schema:
type: string
default: a7335667-93e7-11ec-a39d-005056b38ce3
- name: dataset_type
in: path
required: true
schema:
type: string
default: homologies
responses:
'200':
description: Successful operation
content:
application/json:
schema:
type: object
properties:
release_version:
type: string
example: "110.1"
attributes:
type: array
items:
$ref: '#/components/schemas/DatasetAttribute'
'404':
description: Genome not found
content:
application/json:
schema:
type: object
properties:
message:
type: string
example: 'Could not find details for genome 0cbc227a-7179-43c2-8061-a50d94423c4d and dataset homologies.'
'500':
$ref: '#/components/responses/500InternalServerError'
/api/metadata/genome/{genome_id}/vep/file_paths:
get:
summary: Returns the VEP file paths for the specified genome
parameters:
- name: genome_id
in: path
required: true
schema:
type: string
example: 3704ceb1-948d-11ec-a39d-005056b38ce3
responses:
'200':
description: Successful operation
content:
application/json:
schema:
type: object
properties:
faaLocation:
type: string
example: Homo_sapiens/GCA_018473295.1/vep/genome/softmasked.fa.bgz
gffLocation:
type: string
example: Homo_sapiens/GCA_018473295.1/vep/ensembl/geneset/2022_08/genes.gff3.bgz
'404':
description: Genome ID not found
content:
application/json:
schema:
type: object
properties:
message:
type: string
example: "Genome ID not found"
'500':
$ref: '#/components/responses/500InternalServerError'
/api/metadata/genomeid/:
get:
summary: Returns the latest genome object
parameters:
- name: assembly_accession_id
in: query
required: true
schema:
type: string
example: GCA_000001405.29
responses:
'200':
description: successful operation
content:
application/json:
schema:
$ref: '#/components/schemas/GenomeIDFromAssemblyAccessionResponse'
'404':
$ref: '#/components/responses/404NotFound'
'500':
$ref: '#/components/responses/500InternalServerError'
components:
schemas:
GenomeIDFromAssemblyAccessionResponse:
type: object
properties:
genome_uuid:
type: string
example: "a7335667-93e7-11ec-a39d-005056b38ce3"
release_version:
type: number
example: "110"
genome_tag:
type: string
example: "grch38"
BriefGenomeDetails:
type: object
properties:
genome_id:
type: string
example: a7335667-93e7-11ec-a39d-005056b38ce3
genome_tag:
type: string
example: grch38
nullable: true
common_name:
type: string
example: Human
nullable: true
scientific_name:
type: string
example: Homo sapiens
assembly:
type: object
properties:
accession_id:
type: string
example: GCA_000001405.28
name:
type: string
example: GRCh38.p13
type:
$ref: '#/components/schemas/SpeciesTypeInGenome'
nullable: true
is_reference:
type: boolean
required:
- genome_id
- genome_tag
- common_name
- scientific_name
- assembly_accession
- assembly_name
- type
- is_reference
GenomeStats:
type: object
properties:
assembly_stats:
type: object
properties:
contig_n50:
type: number
nullable: true
total_genome_length:
type: number
nullable: true
total_coding_sequence_length:
type: number
nullable: true
total_gap_length:
type: number
nullable: true
spanned_gaps:
type: number
nullable: true
chromosomes:
type: number
nullable: true
toplevel_sequences:
type: number
nullable: true
component_sequences:
type: number
nullable: true
gc_percentage:
type: number
nullable: true
required:
- contig_n50
- total_genome_length
- total_coding_sequence_length
- total_gap_length
- spanned_gaps
- chromosomes
- toplevel_sequences
- component_sequences
- gc_percentage
additionalProperties: false
coding_stats:
type: object
properties:
coding_genes:
type: number
nullable: true
average_genomic_span:
type: number
nullable: true
average_sequence_length:
type: number
nullable: true
average_cds_length:
type: number
nullable: true
shortest_gene_length:
type: number
nullable: true
longest_gene_length:
type: number
nullable: true
total_transcripts:
type: number
nullable: true
coding_transcripts:
type: number
nullable: true
transcripts_per_gene:
type: number
nullable: true
coding_transcripts_per_gene:
type: number
nullable: true
total_exons:
type: number
nullable: true
total_coding_exons:
type: number
nullable: true
average_exon_length:
type: number
nullable: true
average_coding_exon_length:
type: number
nullable: true
average_exons_per_transcript:
type: number
nullable: true
average_coding_exons_per_coding_transcript:
type: number
nullable: true
total_introns:
type: number
nullable: true
average_intron_length:
type: number
nullable: true
required:
- coding_genes
- average_genomic_span
- average_sequence_length
- average_cds_length
- shortest_gene_length
- longest_gene_length
- total_transcripts
- coding_transcripts
- transcripts_per_gene
- coding_transcripts_per_gene
- total_exons
- total_coding_exons
- average_exon_length
- average_coding_exon_length
- average_exons_per_transcript
- average_coding_exons_per_coding_transcript
- total_introns
- average_intron_length
additionalProperties: false
non_coding_stats:
type: object
properties:
non_coding_genes:
type: number
nullable: true
small_non_coding_genes:
type: number
nullable: true
long_non_coding_genes:
type: number
nullable: true
misc_non_coding_genes:
type: number
nullable: true
average_genomic_span:
type: number
nullable: true
average_sequence_length:
type: number
nullable: true
shortest_gene_length:
type: number
nullable: true
longest_gene_length:
type: number
nullable: true
total_transcripts:
type: number
nullable: true
transcripts_per_gene:
type: number
nullable: true
total_exons:
type: number
nullable: true
average_exon_length:
type: number
nullable: true
average_exons_per_transcript:
type: number
nullable: true
total_introns:
type: number
nullable: true
average_intron_length:
type: number
nullable: true
required:
- non_coding_genes
- small_non_coding_genes
- long_non_coding_genes
- misc_non_coding_genes
- average_genomic_span
- average_sequence_length
- shortest_gene_length
- longest_gene_length
- total_transcripts
- transcripts_per_gene
- total_exons
- average_exon_length
- average_exons_per_transcript
- total_introns
- average_intron_length
additionalProperties: false
pseudogene_stats:
type: object
properties:
pseudogenes:
type: number
nullable: true
average_genomic_span:
type: number
nullable: true
average_sequence_length:
type: number
nullable: true
shortest_gene_length:
type: number
nullable: true
longest_gene_length:
type: number
nullable: true
total_transcripts:
type: number
nullable: true
transcripts_per_gene:
type: number
nullable: true
total_exons:
type: number
nullable: true
average_exon_length:
type: number
nullable: true
average_exons_per_transcript:
type: number
nullable: true
total_introns:
type: number
nullable: true
average_intron_length:
type: number
nullable: true
required:
- pseudogenes
- average_genomic_span
- average_sequence_length
- shortest_gene_length
- longest_gene_length
- total_transcripts
- transcripts_per_gene
- total_exons
- average_exon_length
- average_exons_per_transcript
- total_introns
- average_intron_length
additionalProperties: false
homology_stats:
type: object
properties:
coverage:
type: number
reference_species_name:
type: string
description: Scientific name of the species against which homology was calculated
example: Homo sapiens
nullable: true
required:
- coverage
- reference_species_name
additionalProperties: false
variation_stats:
properties:
short_variants:
type: number
nullable: true
structural_variants:
type: number
nullable: true
short_variants_with_phenotype_assertions:
type: number
nullable: true
short_variants_with_publications:
type: number
nullable: true
short_variants_frequency_studies:
type: number
nullable: true
structural_variants_with_phenotype_assertions:
type: number
nullable: true
required:
- short_variants
- structural_variants
- short_variants_with_phenotype_assertions
- short_variants_with_publications
- short_variants_frequency_studies
- structural_variants_with_phenotype_assertions
type: object
nullable: true
regulation_stats:
type: object
properties:
enhancers:
type: number
nullable: true
promoters:
type: number
nullable: true
open_chromatin_count:
type: number
nullable: true
ctcf_count:
type: number
nullable: true
tfbs_count:
type: number
nullable: true
required:
- enhancers
- promoters
- open_chromatin_count
- ctcf_count
- tfbs_count
nullable: true
required:
- assembly_stats
- coding_stats
- non_coding_stats
- pseudogene_stats
- homology_stats
- variation_stats
- regulation_stats
additionalProperties: false
DatasetAttribute:
type: object
properties:
name:
type: string
value:
type: string
version:
type: string
uuid:
type: string
type:
type: string
PopularSpecies:
type: object
properties:
species_taxonomy_id:
anyOf:
- type: string
- type: number
name:
type: string
description: Human-friendly text to show in the tooltip ( common_name if exists else scientific_name )
image:
type: string
description: Url of the associated svg
genomes_count:
type: number
description: The number of genomes associated with this species
required:
- id
- name
- image
- members_count
AssemblyInGenome:
properties:
accession_id:
type: string
example: GCA_018466855.1
name:
type: string
example: HG02559.alt.pat.f1_v2
url:
type: string
example: https://identifiers.org/insdc.gca/GCA_018466855.1
nullable: true
required:
- accession_id
- name
- url
additionalProperties: false
type: object
AssemblyProvider:
type: object
properties:
name:
type: string
example: UCSC Genomics Institute
url:
type: string
example: https://genomics.ucsc.edu
nullable: true
required:
- name
- url
AnnotationProvider:
type: object
properties:
name:
type: string
example: UCSC Genomics Institute
url:
type: string
example: https://genomics.ucsc.edu
nullable: true
required:
- name
- url
SpeciesTypeInGenome:
properties:
kind:
type: string
example: population
value:
type: string
example: African Caribbean In Barbados
required:
- kind
- value
additionalProperties: false
type: object
GenomeDetails:
properties:
genome_id:
type: string
example: a7335667-93e7-11ec-a39d-005056b38ce3
genome_tag:
type: string
example: grch38
nullable: true
taxonomy_id:
type: string
example: "9606"
description: Identifier of the taxon that the genome belongs to.
May be the same as species_taxonomy_id, or different.
species_taxonomy_id:
type: string
example: "1"
description: required to be able to retrieve a list of related genomes
common_name:
type: string
example: human
nullable: true
scientific_name:
type: string
example: Homo sapiens
type:
$ref: '#/components/schemas/SpeciesTypeInGenome'
nullable: true
is_reference:
type: boolean
assembly:
$ref: '#/components/schemas/AssemblyInGenome'
assembly_provider:
$ref: '#/components/schemas/AssemblyProvider'
nullable: true
assembly_level:
type: string
example: complete genome
assembly_date:
type: string
description: ISO date string in the YYYY-MM format
example: "2019-02"
nullable: true
annotation_provider:
$ref: '#/components/schemas/AnnotationProvider'
nullable: true
annotation_method:
type: string
example: import
nullable: true
annotation_version:
type: string
example: GENCODE 34
nullable: true
annotation_date:
type: string
description: ISO date string in the YYYY-MM format
example: "2019-02"
nullable: true
number_of_genomes_in_group:
type: number
description: The number of genomes, including the current one, that share the same species taxonomy id.
May just mean the number of alternative assemblies; but may also include genomes
that have the same assembly, but different annotations.
required:
- genome_id
- genome_tag
- taxonomy_id
- species_taxonomy_id
- common_name
- scientific_name
- type
- is_reference
- assembly
- assembly_provider
- assembly_level
- assembly_date
- annotation_provider
- annotation_method
- annotation_version
- annotation_date
- related_genomes_count
additionalProperties: false
type: object
ExampleObject:
type: object
properties:
id:
type: string
example: ENSG00000139618
type:
type: string
description: Member of a controlled vocabulary. Examples include "gene", "location", "variant"
example: gene
Karyotype:
type: array
items:
$ref: '#/components/schemas/TopLevelRegion'
TopLevelRegion:
type: object
properties:
name:
type: string
example: "1"
type:
type: string
example: "chromosome"
length:
type: integer
example: 248956422
is_circular:
type: boolean
example: false
LocationValidationResponse:
type: object
properties:
start:
type: object
properties:
value:
type: integer
example: 32272495
is_valid:
type: boolean
error_code:
type: string
nullable: true
description: error code for programmatic response; null if the start coordinate is valid
error_message:
type: string
nullable: true
description: human-readable description of error; null if the start coordinate is valid
end:
type: object
properties:
value:
type: integer
example: 32442859
is_valid:
type: boolean
error_code:
type: string
nullable: true
description: error code for programmatic response; null if the end coordinate is valid
error_message:
type: string
nullable: true
description: human-readable description of error; null if the end coordinate is valid
region:
type: object
properties:
region_name:
type: string
example: "13"
description: Name of the region as it is used at Ensembl.
If we support other region formats in user input (e.g. UCSC region name, such as "chr13"),
then this field will normalise user input to Ensembl region name
is_valid:
type: boolean
error_code:
type: string
nullable: true
description: error code for programmatic response; null if region name is valid
error_message:
type: string
nullable: true
description: human-readable description of error; null if region name is valid
location:
type: string
example: "13:32272495-32442859"
nullable: true
description: >
Contains Ensembl-formatted location string that will make sense to the genome browser.
Is set to null if the location is invalid.
(Note that if we support other region formats in user input, such as UCSC region name,
then the region segment of the location string will be normalised to Ensembl region names,
e.g. instead of chr13:32272495-32442859, it will say 13:32272495-32442859.)
FTPLink:
type: object
properties:
dataset:
type: string
enum:
- genebuild
- assembly
- homologies
- regulation
- variation
url:
type: string
example: https://ftp.ebi.ac.uk/pub/ensemblorganisms/Homo_sapiens/GCA_000001405.29/ensembl/genome
required:
- dataset
- url
additionalProperties: false
description: FTP link to a dataset directory for a genome