forked from ncbi/datasets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
datasets.openapi.yaml
3214 lines (3214 loc) · 93.7 KB
/
datasets.openapi.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
basePath: /datasets/v1alpha
consumes:
- application/json
definitions:
AssemblyDatasetDescriptorsFilterAssemblyLevel:
default: chromosome
enum:
- chromosome
- scaffold
- contig
- complete_genome
title: 'The level of the genome assembly: Chromosome, Scaffold, Contig or Complete
Genome'
type: string
AssemblyDatasetDescriptorsFilterAssemblySource:
default: all
enum:
- all
- refseq
- genbank
type: string
AssemblyDatasetRequestResolution:
default: FULLY_HYDRATED
enum:
- FULLY_HYDRATED
- DATA_REPORT_ONLY
type: string
AssemblyMetadataRequestBioprojects:
properties:
accessions:
items:
type: string
type: array
type: object
DownloadSummaryDehydrated:
properties:
cli_download_command_line:
type: string
cli_rehydrate_command_line:
type: string
estimated_file_size_mb:
format: int64
type: integer
url:
type: string
type: object
DownloadSummaryHydrated:
properties:
cli_download_command_line:
type: string
estimated_file_size_mb:
format: int64
type: integer
url:
type: string
type: object
ErrorAssemblyErrorCode:
default: UNKNOWN_ASSEMBLY_ERROR_CODE
enum:
- UNKNOWN_ASSEMBLY_ERROR_CODE
- INVALID_BIOPROJECT_IDS
- NO_ASSEMBLIES_FOR_BIOPROJECTS
- INVALID_TAXON
type: string
ErrorGeneErrorCode:
default: UNKNOWN_GENE_ERROR_CODE
enum:
- UNKNOWN_GENE_ERROR_CODE
- INCOMPLETE_LOOKUP_SYMBOL
type: string
ErrorVirusErrorCode:
default: UNKNOWN_VIRUS_ERROR_CODE
enum:
- UNKNOWN_VIRUS_ERROR_CODE
type: string
GeneDatasetRequestSort:
properties:
direction:
$ref: '#/definitions/v1alpha1SortDirection'
description: Select a direction for the sort.
field:
$ref: '#/definitions/GeneDatasetRequestSortField'
description: Select a field to sort on.
type: object
GeneDatasetRequestSortField:
default: SORT_FIELD_UNSPECIFIED
enum:
- SORT_FIELD_UNSPECIFIED
- SORT_FIELD_GENE_ID
- SORT_FIELD_GENE_TYPE
- SORT_FIELD_GENE_SYMBOL
type: string
GeneDatasetRequestSymbolsForTaxon:
properties:
symbols:
items:
type: string
type: array
taxon:
type: string
type: object
GeneDescriptorGeneType:
default: UNKNOWN
enum:
- UNKNOWN
- tRNA
- rRNA
- snRNA
- scRNA
- snoRNA
- PROTEIN_CODING
- PSEUDO
- TRANSPOSON
- miscRNA
- ncRNA
- BIOLOGICAL_REGION
- OTHER
type: string
GeneDescriptorRnaType:
default: rna_UNKNOWN
enum:
- rna_UNKNOWN
- premsg
- tmRna
type: string
GenomicRegionGenomicRegionType:
default: UNKNOWN
enum:
- UNKNOWN
- REFSEQ_GENE
- PSEUDOGENE
- BIOLOGICAL_REGION
- OTHER
type: string
MicroBiggeDatasetRequestElementFlankConfig:
properties:
length:
format: int64
type: integer
title: configuration options for gene file output
type: object
OrganismCountByType:
properties:
counts:
$ref: '#/definitions/OrganismCounts'
type:
$ref: '#/definitions/OrganismCountType'
type: object
OrganismCountType:
default: COUNT_TYPE_UNSPECIFIED
enum:
- COUNT_TYPE_UNSPECIFIED
- COUNT_TYPE_ASSEMBLY
- COUNT_TYPE_GENE
type: string
OrganismCounts:
properties:
node:
format: int64
title: The number of assemblies at this node only
type: integer
subtree:
description: The number of assemblies at this node and all children.
format: int64
type: integer
type: object
OrganismRankType:
default: NO_RANK
enum:
- NO_RANK
- SUPERKINGDOM
- KINGDOM
- SUBKINGDOM
- SUPERPHYLUM
- SUBPHYLUM
- PHYLUM
- CLADE
- SUPERCLASS
- CLASS
- SUBCLASS
- INFRACLASS
- COHORT
- SUBCOHORT
- SUPERORDER
- ORDER
- SUBORDER
- INFRAORDER
- PARVORDER
- SUPERFAMILY
- FAMILY
- SUBFAMILY
- GENUS
- SUBGENUS
- SPECIES_GROUP
- SPECIES_SUBGROUP
- SPECIES
- SUBSPECIES
- TRIBE
- SUBTRIBE
- FORMA
- VARIETAS
- STRAIN
- SECTION
- SUBSECTION
- PATHOGROUP
- SUBVARIETY
- GENOTYPE
- SEROTYPE
- ISOLATE
- MORPH
- SERIES
- FORMA_SPECIALIS
- SEROGROUP
- BIOTYPE
type: string
ProkaryoteGeneRequestGeneFlankConfig:
properties:
length:
format: int64
type: integer
type: object
SciNameAndIdsSciNameAndId:
properties:
sci_name:
title: Scientific name
type: string
tax_id:
format: uint64
title: NCBI Taxonomy ID
type: string
type: object
TranscriptTranscriptType:
default: UNKNOWN
enum:
- UNKNOWN
- PROTEIN_CODING
- NON_CODING
- PROTEIN_CODING_MODEL
- NON_CODING_MODEL
type: string
WarningGeneWarningCode:
default: UNKNOWN_GENE_WARNING_CODE
enum:
- UNKNOWN_GENE_WARNING_CODE
- ACCESSION_VERSION_MISMATCH
- REPLACED_GENE_ID
- DISCONTINUED_GENE_ID
- UNRECOGNIZED_GENE_ID
- UNRECOGNIZED_GENE_SYMBOL
- UNRECOGNIZED_ACCESSION
- UNRECOGNIZED_TAX_TOKEN
type: string
WarningReplacedId:
properties:
requested:
type: string
returned:
type: string
type: object
datasetsv1alpha1Accessions:
properties:
accessions:
items:
type: string
type: array
type: object
datasetsv1alpha1Annotation:
properties:
assemblies_in_scope:
items:
$ref: '#/definitions/v1alpha1AnnotatedAssemblies'
type: array
release_date:
type: string
release_name:
type: string
type: object
protobufAny:
properties:
type_url:
type: string
value:
format: byte
type: string
type: object
rpcStatus:
properties:
code:
format: int32
type: integer
details:
items:
$ref: '#/definitions/protobufAny'
type: array
message:
type: string
type: object
v1alpha1AnnotatedAssemblies:
properties:
accession:
type: string
name:
type: string
type: object
v1alpha1AnnotationForAssembly:
properties:
file:
description: List of annotation files available for this assembly.
items:
$ref: '#/definitions/v1alpha1AnnotationForAssemblyFile'
type: array
name:
title: Annotation name
type: string
release_date:
title: The date the annotation was released
type: string
release_number:
description: NCBI Annotation release number, if one exists.
type: string
report_url:
title: NCBI annotation report website
type: string
source:
description: Source of the annotation. Possibly from a submitter.
type: string
stats:
$ref: '#/definitions/v1alpha1FeatureCounts'
title: Feature statistics
type: object
v1alpha1AnnotationForAssemblyFile:
properties:
estimated_size:
format: uint64
type: string
type:
$ref: '#/definitions/v1alpha1AnnotationForAssemblyType'
type: object
v1alpha1AnnotationForAssemblyType:
default: DEFAULT
enum:
- DEFAULT
- GENOME_GFF
- GENOME_GBFF
- GENOME_GB
- RNA_FASTA
- PROT_FASTA
- GENOME_GTF
type: string
v1alpha1AnnotationForVirusType:
default: DEFAULT
enum:
- DEFAULT
- CDS_FASTA
- PROT_FASTA
- GENOME_GBFF
- GENOME_GPFF
- PDB_FILES
type: string
v1alpha1AssemblyDatasetAvailability:
properties:
invalid_assemblies:
items:
type: string
type: array
reason:
type: string
valid_assemblies:
items:
type: string
type: array
type: object
v1alpha1AssemblyDatasetDescriptor:
properties:
annotation_metadata:
$ref: '#/definitions/v1alpha1AnnotationForAssembly'
title: Annotation available for this assembly
assembly_accession:
title: The GenColl assembly accession (e.g. GCF_000001405.39)
type: string
assembly_category:
description: Category of assembly, like reference.
type: string
assembly_level:
title: The level of the assembly, e.g. Chromosome, Scaffold, Contig or Complete
Genome
type: string
bioproject_lineages:
items:
$ref: '#/definitions/v1alpha1BioProjectLineage'
title: The bioproject(s) associated with this assembly
type: array
biosample_accession:
description: NCBI BioSample Accession for the BioSample from which the sequences
in the genome assembly were obtained.
type: string
chromosomes:
description: 'Which chromosomes are included in this dataset. NB: Mitochondria
is encoded as ''MT''.'
items:
type: string
type: array
contig_n50:
format: int64
title: Minimum contig length needed to cover 50% of the genome
type: integer
display_name:
description: The name of the Assembly dataset to be displayed in a user interface.
type: string
estimated_size:
format: uint64
title: Estimated size of all annotation and sequence files in download
type: string
org:
$ref: '#/definitions/v1alpha1Organism'
title: Organism information
seq_length:
format: uint64
title: Combined length of all sequence data
type: string
submission_date:
title: Date the assembly was provided to NCBI
type: string
submitter:
title: The submitting consortium or organization. Full submitter information
is available in the BioProject
type: string
type: object
v1alpha1AssemblyDatasetDescriptors:
properties:
datasets:
description: List of all datasets that match the request, up to the provided
limit.
items:
$ref: '#/definitions/v1alpha1AssemblyDatasetDescriptor'
type: array
total_count:
description: The total count of available datasets (ignoring the cutoff parameter).
format: int64
type: integer
type: object
v1alpha1AssemblyDatasetDescriptorsFilter:
properties:
assembly_level:
items:
$ref: '#/definitions/AssemblyDatasetDescriptorsFilterAssemblyLevel'
title: Only return genome assemblies that have one of the specified assembly
levels
type: array
assembly_source:
$ref: '#/definitions/AssemblyDatasetDescriptorsFilterAssemblySource'
title: Return only RefSeq (GCF_) or GenBank (GCA_) genome assemblies
first_release_date:
format: date-time
title: Only return genome assemblies that were released on or after the specified
date
type: string
has_annotation:
title: Return only annotated genome assemblies
type: boolean
last_release_date:
format: date-time
title: Only return genome assemblies that were released on or before to the
specified date
type: string
reference_only:
description: If true, only return reference and representative (GCF_ and GCA_)
genome assemblies.
type: boolean
refseq_only:
description: If true, only return RefSeq (GCF_) genome assemblies. Deprecated
- use assembly_type instead.
type: boolean
search_text:
items:
type: string
title: Only return results whose fields contain the specified search terms
in their taxon, infraspecific, assembly name or submitter fields
type: array
type: object
v1alpha1AssemblyDatasetDescriptorsRequestContentType:
default: COMPLETE
enum:
- COMPLETE
- ASSM_ACC
- COUNTS
type: string
v1alpha1AssemblyDatasetRequest:
properties:
accessions:
items:
type: string
title: NCBI genome assembly accessions
type: array
assembly_accessions:
items:
type: string
title: NCBI genome assembly accessions
type: array
chromosomes:
description: The default setting is all chromosome. Specify individual chromosome
by string (1,2,MT or chr1,chr2.chrMT). Unplaced sequences are treated like
their own chromosome ('Un'). The filter only applies to fasta sequence.
items:
type: string
type: array
exclude_sequence:
description: Set to true to omit the genomic sequence.
type: boolean
hydrated:
$ref: '#/definitions/AssemblyDatasetRequestResolution'
description: Set to DATA_REPORT_ONLY, to only retrieve data-reports.
include_annotation:
type: boolean
include_annotation_type:
description: Select additional types of annotation to include in the data
package. If unset, no annotation is provided.
items:
$ref: '#/definitions/v1alpha1AnnotationForAssemblyType'
type: array
include_tsv:
description: Set to true to include a TSV represention of the data-report.
type: boolean
type: object
v1alpha1AssemblyMatch:
properties:
assembly:
$ref: '#/definitions/v1alpha1AssemblyDatasetDescriptor'
messages:
items:
$ref: '#/definitions/v1alpha1Message'
type: array
type: object
v1alpha1AssemblyMetadata:
properties:
assemblies:
items:
$ref: '#/definitions/v1alpha1AssemblyMatch'
type: array
messages:
items:
$ref: '#/definitions/v1alpha1Message'
type: array
next_page_token:
description: A token that can be sent as `page_token` to retrieve the next
page. If this field is omitted, there are no subsequent pages.
type: string
total_count:
description: The total count of available datasets (ignoring the cutoff parameter).
Only provided for the first page of results (when `page_token` is empty
in the request).
format: int64
type: integer
type: object
v1alpha1AssemblyMetadataRequest:
properties:
accessions:
$ref: '#/definitions/datasetsv1alpha1Accessions'
title: NCBI assembly accession
bioprojects:
$ref: '#/definitions/AssemblyMetadataRequestBioprojects'
title: NCBI bioproject accessions
filters:
$ref: '#/definitions/v1alpha1AssemblyDatasetDescriptorsFilter'
limit:
title: Deprecated - Limit the number of returned results ("all", "none", otherwise
an integer value)
type: string
page_size:
description: The maximum number of genome assemblies to return. Default is
20 and maximum is 1000. If the number of results exceeds the page size, `page_token`
can be used to retrieve the remaining results.
format: int32
type: integer
page_token:
description: A page token is returned from an `AssemblyMetadataRequest` call
with more than `page_size` results. Use this token, along with the previous `AssemblyMetadataRequest`
parameters, to retrieve the next page of results. When `page_token` is empty,
all results have been retrieved.
type: string
returned_content:
$ref: '#/definitions/v1alpha1AssemblyMetadataRequestContentType'
title: Return either assembly accessions, or entire assembly-metadata records
tax_exact_match:
description: If true, only return assemblies with the given NCBI Taxonomy
ID, or name. Otherwise, assemblies from taxonomy subtree are included, too.
Ignored for assembly_accession request.
type: boolean
taxon:
title: NCBI Taxonomy ID or name (common or scientific) at any taxonomic rank
type: string
type: object
v1alpha1AssemblyMetadataRequestContentType:
default: COMPLETE
enum:
- COMPLETE
- ASSM_ACC
type: string
v1alpha1BioProject:
properties:
accession:
type: string
parent_accession:
type: string
parent_accessions:
items:
type: string
type: array
title:
type: string
type: object
v1alpha1BioProjectLineage:
properties:
bioprojects:
description: In order, from most specific, up to the root.
items:
$ref: '#/definitions/v1alpha1BioProject'
type: array
type: object
v1alpha1DownloadSummary:
properties:
assembly_count:
format: int64
title: For backwards compatability with old VirusDatasetSummary
type: integer
dehydrated:
$ref: '#/definitions/DownloadSummaryDehydrated'
errors:
items:
$ref: '#/definitions/v1alpha1Error'
type: array
hydrated:
$ref: '#/definitions/DownloadSummaryHydrated'
messages:
items:
$ref: '#/definitions/v1alpha1Message'
type: array
record_count:
description: The number of records for the requested filter.
format: int64
type: integer
resource_updated_on:
description: The latest date on which the resource was updated.
format: date-time
type: string
type: object
v1alpha1Error:
properties:
assembly_error_code:
$ref: '#/definitions/ErrorAssemblyErrorCode'
gene_error_code:
$ref: '#/definitions/ErrorGeneErrorCode'
invalid_identifiers:
items:
type: string
type: array
message:
type: string
reason:
type: string
valid_identifiers:
items:
type: string
type: array
virus_error_code:
$ref: '#/definitions/ErrorVirusErrorCode'
type: object
v1alpha1Fasta:
default: FASTA_UNSPECIFIED
enum:
- FASTA_UNSPECIFIED
- FASTA_GENE
- FASTA_RNA
- FASTA_PROTEIN
- FASTA_GENE_FLANK
type: string
v1alpha1FeatureCounts:
properties:
gene_counts:
$ref: '#/definitions/v1alpha1GeneCounts'
title: Counts of gene types
type: object
v1alpha1GeneCounts:
properties:
protein_coding:
format: int64
title: Count of annotated genes that encode a protein
type: integer
total:
format: int64
title: Total number of annotated genes
type: integer
type: object
v1alpha1GeneDatasetRequest:
properties:
accessions:
description: RNA or Protein accessions.
items:
type: string
type: array
fasta_filter:
items:
type: string
title: Limit the FASTA sequences in the datasets package to these transcript
and protein accessions
type: array
gene_ids:
items:
format: int64
type: integer
title: NCBI gene ids
type: array
include_annotation_type:
description: Select additional types of annotation to include in the data
package. If unset, no annotation is provided.
items:
$ref: '#/definitions/v1alpha1Fasta'
type: array
limit:
title: Limit the number of returned results ("all", "none", otherwise an integer
value)
type: string
returned_content:
$ref: '#/definitions/v1alpha1GeneDatasetRequestContentType'
title: Return either gene-ids, or entire gene metadata
sort_schema:
$ref: '#/definitions/GeneDatasetRequestSort'
symbols_for_taxon:
$ref: '#/definitions/GeneDatasetRequestSymbolsForTaxon'
taxon:
title: NCBI Taxonomy ID or name (common or scientific) that the genes are
annotated at
type: string
type: object
v1alpha1GeneDatasetRequestContentType:
default: COMPLETE
enum:
- COMPLETE
- IDS_ONLY
type: string
v1alpha1GeneDescriptor:
properties:
annotations:
items:
$ref: '#/definitions/datasetsv1alpha1Annotation'
type: array
chromosome:
title: See chromosomes
type: string
chromosomes:
items:
type: string
type: array
common_name:
title: Species common-name
type: string
description:
type: string
ensembl_gene_ids:
items:
type: string
type: array
gene_id:
format: uint64
title: mongo-required
type: string
genomic_ranges:
items:
$ref: '#/definitions/v1alpha1SeqRangeSet'
type: array
genomic_regions:
items:
$ref: '#/definitions/v1alpha1GenomicRegion'
type: array
nomenclature_authority:
$ref: '#/definitions/v1alpha1NomenclatureAuthority'
omim_ids:
items:
type: string
type: array
orientation:
$ref: '#/definitions/v1alpha1Orientation'
proteins:
items:
$ref: '#/definitions/v1alpha1Protein'
type: array
reference_standards:
items:
$ref: '#/definitions/v1alpha1GenomicRegion'
type: array
replaced_gene_id:
format: uint64
type: string
rna_type:
$ref: '#/definitions/GeneDescriptorRnaType'
swiss_prot_accessions:
items:
type: string
type: array
symbol:
type: string
synonyms:
items:
type: string
type: array
tax_id:
format: uint64
type: string
taxname:
type: string
transcripts:
items:
$ref: '#/definitions/v1alpha1Transcript'
type: array
type:
$ref: '#/definitions/GeneDescriptorGeneType'
title: Summary of NCBI Gene resource
type: object
v1alpha1GeneDescriptors:
properties:
errors:
items:
$ref: '#/definitions/v1alpha1Error'
type: array
genes:
items:
$ref: '#/definitions/v1alpha1GeneDescriptor'
type: array
type: object
v1alpha1GeneMatch:
properties:
errors:
items:
$ref: '#/definitions/v1alpha1Error'
type: array
gene:
$ref: '#/definitions/v1alpha1GeneDescriptor'
messages:
items:
$ref: '#/definitions/v1alpha1Message'
type: array
query:
items:
type: string
type: array
warnings:
items:
$ref: '#/definitions/v1alpha1Warning'
type: array
type: object
v1alpha1GeneMetadata:
properties:
genes:
items:
$ref: '#/definitions/v1alpha1GeneMatch'
type: array
messages:
items:
$ref: '#/definitions/v1alpha1Message'
type: array
total_count:
description: The total count of available datasets (ignoring the cutoff parameter).
format: int64
type: integer
type: object
v1alpha1GenomicLocation:
properties:
exons:
items:
$ref: '#/definitions/v1alpha1Range'
type: array
genomic_accession_version:
type: string
genomic_range:
$ref: '#/definitions/v1alpha1Range'
sequence_name:
type: string
type: object
v1alpha1GenomicRegion:
properties:
gene_range:
$ref: '#/definitions/v1alpha1SeqRangeSet'
description: The range of this Gene record on this genomic region.
type:
$ref: '#/definitions/GenomicRegionGenomicRegionType'
type: object
v1alpha1MaturePeptide:
properties:
accession_version:
type: string
length:
format: int64
type: integer
name:
type: string
title: Mature peptide
type: object
v1alpha1Message:
properties:
error:
$ref: '#/definitions/v1alpha1Error'
warning:
$ref: '#/definitions/v1alpha1Warning'
type: object
v1alpha1MicroBiggeDatasetRequestFileType:
default: FILE_TYPE_UNSPECIFIED
enum:
- FILE_TYPE_UNSPECIFIED
- element_fasta
- element_flank_fasta
- contig_fasta
- protein_fasta
type: string
v1alpha1NomenclatureAuthority:
description: The authority and record by which NCBI has named the gene.
properties:
authority:
type: string
identifier:
type: string
type: object
v1alpha1Organism:
properties:
assembly_count:
description: The number of assemblies at this node, and all children.
format: uint64
type: string
assembly_counts:
$ref: '#/definitions/OrganismCounts'
title: assembly_counts will soon be deprecated
blast_node:
title: True if a blast nodes
type: boolean
breed:
title: Infraspecies breed
type: string
children:
description: List of all children tax nodes.
items:
$ref: '#/definitions/v1alpha1Organism'
type: array
common_name:
title: Common Name of the organism
type: string
counts:
items:
$ref: '#/definitions/OrganismCountByType'
type: array
cultivar:
title: Infraspecies cultivar
type: string
ecotype:
title: Infraspecies ecotype
type: string
icon:
type: boolean
isolate:
title: Infraspecies isolate
type: string
key:
format: uint64
type: string
max_ord:
format: int64
type: integer
merged:
description: List of all merged tax nodes for the pruned taxonomic tree.
items:
$ref: '#/definitions/v1alpha1Organism'
type: array
merged_tax_ids:
description: List of merged (now deprecated) Taxonomy IDs for the current
Organism.
items:
format: uint64
type: string
type: array
min_ord:
format: int64
title: ordinal values for any node are the full range of the ordinal values
in the subtree underneath this node, and are used for faster range-based
lookups
type: integer
parent_tax_id:
format: uint64
title: The parent taxnode ID
type: string
rank:
$ref: '#/definitions/OrganismRankType'
description: The rank of the tax node.
sci_name:
title: Scientific Name
type: string
search_text:
items:
type: string
title: May include names from merged nodes
type: array
sex:
title: Infraspecies sex