Skip to content

Instantly share code, notes, and snippets.

@ktym
Last active March 17, 2022 07:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ktym/29319b3441b85ba4a2089ab19ea715f9 to your computer and use it in GitHub Desktop.
Save ktym/29319b3441b85ba4a2089ab19ea715f9 to your computer and use it in GitHub Desktop.
swagger: '2.0'
info:
title: Togo ID API
version: 2.0.0
host: api.togoid.dbcls.jp.il3c.com
schemes:
- https
produces:
- application/json
tags:
- name: "convert"
- name: "count"
- name: "config"
paths:
/convert:
get:
tags:
- "convert"
summary: Convert IDs
operationId: convertId
parameters:
- name: ids
in: query
type: string
description: "A comma-separated list of source IDs."
required: true
- name: route
in: query
type: string
description: "A comma-separated list of datasets, starts with the source dataset and ends with the target dataset. A list of available datasets can be obtained with /config/dataset API."
required: true
- name: report
in: query
type: string
enum:
- all
- pair
- target
- full
default: target
description: "The output type can be selected from the following: 'target' (includes target IDs only), 'pair' (includes source and target IDs), 'all' (all converted IDs including source, target, and intermediate IDs of the route), or 'full' (all IDs including unconverted IDs)."
- name: format
in: query
type: string
enum:
- csv
- tsv
- json
default: json
description: "The output format can be selected from Tab-separated values ('tsv'), Comma-separated values ('csv'), or JavaScript Object Notation ('json')."
- name: limit
in: query
type: integer
default: 10000
maximum: 10000
description: "The maximum number of results to be returned (less than or equal to 10000)."
- name: offset
in: query
type: integer
default: 0
description: "The position to start after the specified number of results."
responses:
200:
description: "Successful operation: a list of input IDs, a list of datasets in the route, and converted IDs"
schema:
type: "object"
properties:
ids:
type: "string"
example:
- "26199"
- "38937"
- "14027"
- "21498"
- "18185"
- "1314"
- "25960"
- "2206"
- "22224"
- "19741"
route:
type: "string"
example:
- "hgnc"
- "ensembl_gene"
result:
type: "string"
example:
- "ENSG00000100364"
- "ENSG00000154719"
- "ENSG00000116285"
- "ENSG00000179454"
- "ENSG00000085978"
- "ENSG00000081052"
- "ENSG00000006459"
- "ENSG00000198088"
- "ENSG00000134152"
- "ENSG00000284140"
400:
description: Bad request
/count/{source}-{target}:
get:
tags:
- "count"
summary: Count converted IDs
operationId: countId
parameters:
- name: source
in: path
type: string
description: "A source dataset of a relation. A list of available relations can be obtained with /config/relation API."
required: true
- name: target
in: path
type: string
description: "A target dataset of a relation. A list of available relations can be obtained with /config/relation API."
required: true
- name: ids
in: query
type: string
description: "A comma-separated list of source IDs."
required: true
responses:
200:
description: "Successful operation: a number of successfully converted source IDs and a number of resulted target IDs."
schema:
type: "object"
properties:
source:
type: "string"
example: 2
target:
type: "string"
example: 2
400:
description: Bad request
/config/dataset:
get:
tags:
- "config"
summary: Get all dataset config
operationId: getAllDataset
responses:
200:
description: "Successful operation"
schema:
type: "object"
properties:
affy_probeset:
properties:
label:
type: string
example: Affymetrix probeset
regex:
type: string
example: ^(?<id>\d{3,}(?:_[a-z])?_at)$
prefix:
type: string
example: http://identifiers.org/affy.probeset/
catalog:
type: string
example: FIXME
category:
type: string
example: Probe
examples:
type: array
items:
type: string
example:
- - 1553582_a_at
- 211531_x_at
- 202573_at
- 201640_x_at
- 205117_at
- 201017_at
- 205099_s_at
- 200614_at
- 201895_at
- 202666_s_at
bioproject:
properties:
label:
type: string
example: BioProject
regex:
type: string
example: ^(?<id>PRJ[DEN][A-Z]\d+)$
prefix:
type: string
example: http://identifiers.org/bioproject/
catalog:
type: string
example: nbdc00476
category:
type: string
example: Project
examples:
type: array
items:
type: string
example:
- - PRJDB575
- PRJDB1880
- PRJDB478
- PRJDA45949
- PRJEB6285
- PRJEA28961
- PRJEB2222
- PRJNA30641
- PRJNA68235
- PRJNA42549
biosample:
properties:
label:
type: string
example: BioSample
regex:
type: string
example: ^(?<id>SAM[NED]\w?\d+)$
prefix:
type: string
example: http://identifiers.org/biosample/
catalog:
type: string
example: nbdc01983
category:
type: string
example: Sample
examples:
type: array
items:
type: string
example:
- - SAMD00003683
- SAMD00006315
- SAMD00003741
- SAMD00011226
- SAMN13091859
- SAMN05877962
- SAMN05877838
- SAMEA104232303
- SAMEA4760552
- SAMEA1572228
ccds:
properties:
label:
type: string
example: Consensus CDS
regex:
type: string
example: ^(?<id>CCDS\d+)(?:\.\d+)?$
prefix:
type: string
example: http://identifiers.org/ccds/
catalog:
type: string
example: nbdc00023
category:
type: string
example: Gene
examples:
type: array
items:
type: string
example:
- - CCDS1471
- CCDS10913
- CCDS14790
- CCDS35175
- CCDS2395
- CCDS58412
- CCDS55555
- CCDS34401
- CCDS41889
- CCDS9052
- - CCDS1471.1
- CCDS10913.1
- CCDS14790.1
- CCDS35175.2
- CCDS2395.1
- CCDS58412.1
- CCDS55555.1
- CCDS34401.2
- CCDS41889.1
- CCDS9052.1
chebi:
properties:
label:
type: string
example: ChEBI compound
regex:
type: string
example: ^(?:CHEBI[:_])?(?<id>\d+)$
format:
type: string
example:
- '%s'
- CHEBI:%s
- CHEBI_%
prefix:
type: string
example: http://purl.obolibrary.org/obo/CHEBI_
catalog:
type: string
example: nbdc00027
category:
type: string
example: Compound
examples:
type: array
items:
type: string
example:
- - "84824"
- "40167"
- "32807"
- "87666"
- "57524"
- "64860"
- "94440"
- "18005"
- "4806"
- "50158"
- - CHEBI:84824
- CHEBI:40167
- CHEBI:32807
- CHEBI:87666
- CHEBI:57524
- CHEBI:64860
- CHEBI:94440
- CHEBI:18005
- CHEBI:4806
- CHEBI:50158
- - CHEBI_84824
- CHEBI_40167
- CHEBI_32807
- CHEBI_87666
- CHEBI_57524
- CHEBI_64860
- CHEBI_94440
- CHEBI_18005
- CHEBI_4806
- CHEBI_50158
chembl_compound:
properties:
label:
type: string
example: ChEMBL compound
regex:
type: string
example: ^(?<id>CHEMBL\d+)$
prefix:
type: string
example: http://identifiers.org/chembl.compound/
catalog:
type: string
example: nbdc02555
category:
type: string
example: Compound
examples:
type: array
items:
type: string
example:
- - CHEMBL121649
- CHEMBL190334
- CHEMBL3103282
- CHEMBL69329
- CHEMBL2105131
- CHEMBL2177390
- CHEMBL3091820
- CHEMBL1200335
- CHEMBL3094412
- CHEMBL67367
chembl_target:
properties:
label:
type: string
example: ChEMBL target
regex:
type: string
example: ^(?<id>CHEMBL\d+)$
prefix:
type: string
example: http://identifiers.org/chembl.target/
catalog:
type: string
example: nbdc02555
category:
type: string
example: Protein
examples:
type: array
items:
type: string
example:
- - CHEMBL2788
- CHEMBL3091264
- CHEMBL3831324
- CHEMBL5524
- CHEMBL5597
- CHEMBL3983
- CHEMBL4187
- CHEMBL3391681
- CHEMBL5135
- CHEMBL1255130
civic_gene:
properties:
label:
type: string
example: CIVIC gene
regex:
type: string
example: ^(?<id>\d+)$
prefix:
type: string
example: http://civic.genome.wustl.edu/links/genes/
catalog:
type: string
example: nbdc02558
category:
type: string
example: Gene
clinvar:
properties:
label:
type: string
example: ClinVar variant
regex:
type: string
example: ^(VCV0*)?(?<id>(\d{1,9}))$
format:
type: string
example:
- '%s'
- VCV%09d
prefix:
type: string
example: http://identifiers.org/clinvar/
catalog:
type: string
example: nbdc01514
category:
type: string
example: Variant
examples:
type: array
items:
type: string
example:
- - "658761"
- "619209"
- "745342"
- "11955"
- "731668"
- "724289"
- "725734"
- "743127"
- "789913"
- "5302"
- - VCV000658761
- VCV000619209
- VCV000745342
- VCV000011955
- VCV000731668
- VCV000724289
- VCV000725734
- VCV000743127
- VCV000789913
- VCV000005302
dbsnp:
properties:
label:
type: string
example: dbSNP
regex:
type: string
example: ^(?<id>rs\d+)$
prefix:
type: string
example: http://identifiers.org/dbsnp/
catalog:
type: string
example: nbdc00206
category:
type: string
example: Variant
examples:
type: array
items:
type: string
example:
- - rs746303788
- rs1407020249
- rs374003162
- rs4647297
- rs549539526
- rs1387864740
- rs1177577242
- rs769848663
- rs16961655
- rs79135400
dgidb:
properties:
label:
type: string
example: DGIdb
regex:
type: string
example: ^[a-z0-9]{8}-[a-z0-9]{4}-[a-z0-9]{4}-[a-z0-9]{4}-[a-z0-9]{12}
prefix:
type: string
example: FIXME
catalog:
type: string
example: nbdc02562
category:
type: string
example: Interaction
doid:
properties:
label:
type: string
example: Disease ontology
regex:
type: string
example: ^DO(?:ID)?[:_](?<id>\d+)$
format:
type: string
example:
- DO:%s
- DOID:%s
- DOID_%s
prefix:
type: string
example: http://purl.obolibrary.org/obo/DOID_
catalog:
type: string
example: nbdc00261
category:
type: string
example: Disease
examples:
type: array
items:
type: string
example:
- - DO:9036
- DO:3159
- DO:10964
- DO:12698
- DO:0060459
- DO:11840
- DO:11339
- DO:914
- DO:9945
- DO:1407
- - DOID:9036
- DOID:3159
- DOID:10964
- DOID:12698
- DOID:0060459
- DOID:11840
- DOID:11339
- DOID:914
- DOID:9945
- DOID:1407
- - DOID_9036
- DOID_3159
- DOID_10964
- DOID_12698
- DOID_0060459
- DOID_11840
- DOID_11339
- DOID_914
- DOID_9945
- DOID_1407
drugbank:
properties:
label:
type: string
example: DrugBank
regex:
type: string
example: ^(?<id>DB\d{5})$
prefix:
type: string
example: http://identifiers.org/drugbank/
catalog:
type: string
example: nbdc01071
category:
type: string
example: Compound
examples:
type: array
items:
type: string
example:
- - DB15589
- DB13471
- DB05830
- DB07423
- DB07074
- DB08912
- DB02908
- DB05088
- DB05229
- DB08910
ec:
properties:
label:
type: string
example: Enzyme nomenclature
regex:
type: string
example: ^(?:EC:)?(?<id>\d+\.(?:(?:-\.-\.-)|\d+\.(?:(?:-\.-)|\d+\.(?:-|n?\d+))))$
format:
type: string
example:
- '%s'
- EC:%s
prefix:
type: string
example: http://identifiers.org/ec-code/
catalog:
type: string
example: nbdc01883
category:
type: string
example: Function
examples:
type: array
items:
type: string
example:
- - 1.6.3.1
- 2.4.1.353
- 1.1.1.288
- 1.5.1.2
- 3.1.1.71
- 1.3.1.31
- 3.5.1.29
- 1.16.1.1
- 3.1.3.48
- 2.3.1.138
- - EC:1.6.3.1
- EC:2.4.1.353
- EC:1.1.1.288
- EC:1.5.1.2
- EC:3.1.1.71
- EC:1.3.1.31
- EC:3.5.1.29
- EC:1.16.1.1
- EC:3.1.3.48
- EC:2.3.1.138
ena:
properties:
label:
type: string
example: ENA
regex:
type: string
example: ^(?:ena\.embl:)?(?<id>[A-Z]+[0-9]+)(?:\.\d+)?$
prefix:
type: string
example: http://identifiers.org/ena.embl/
catalog:
type: string
example: nbdc00432
category:
type: string
example: Gene
ensembl_gene:
properties:
label:
type: string
example: Ensembl gene
regex:
type: string
example: ^(?:(?:(?<id1>ENS[A-Z]*G\d{11})(?:\.\d+)?)|(?<id2>FBgn\d{7})|(?:(?<id3>MGP_[A-Za-z0-9]+_G\d{7})(?:\.\d+)?)|(?<id4>LRG_\d+)|(?<id5>WBGene\d{8})|(?<id6>Y[A-Z]{2}\d{3}[A-Z](?:-[A-Z])?)|(?<id7>Q\d{4})|(?<id8>[A-Z]{3}\d{1,3}(?:-\d)?)|(?<id9>snR\d+-?[A-Za-z]?)|(?<id10>t[A-Z]\([ACGUX]{3}\)[A-Z]\d?))$
prefix:
type: string
example: http://identifiers.org/ensembl/
catalog:
type: string
example: nbdc00054
category:
type: string
example: Gene
examples:
type: array
items:
type: string
example:
- - ENSG00000186283
- ENSAMEG00000018238
- ENSG00000167916
- ENSG00000213417
- ENSG00000133328
- ENSG00000274404
- ENSG00000184363
- FBgn0021742
- FBgn0030057
- FBgn0265139
ensembl_protein:
properties:
label:
type: string
example: Ensembl protein
regex:
type: string
example: ^(?:(?:(?<id1>ENS[A-Z]*P\d{11})(?:\.\d+)?)|(?<id2>FBpp\d{7})|(?:(?<id3>MGP_[A-Za-z0-9]+_P\d{7})(?:\.\d+)?)|(?<id4>LRG_\d+p\d+(?:-\d)?)|(?<id5>(?:[A-Za-z0-9][A-Za-z0-9_]+)\.t?\d+[a-z]?(?:\.\d+)?)|(?<id6>Y[A-Z]{2}\d{3}[A-Z](?:-[A-Z])?)|(?<id7>Q\d{4}))$
prefix:
type: string
example: http://identifiers.org/ensembl/
catalog:
type: string
example: nbdc00054
category:
type: string
example: Protein
examples:
type: array
items:
type: string
example:
- - ENSP00000365411
- ENSP00000420674
- ENSAZOP00000020796
- FBpp0070277
- FBpp0070535
- ENSAZOP00000019433
- ENSP00000372042
- ENSAZOP00000017910
- ENSP00000370977
- ENSP00000481894
ensembl_transcript:
properties:
label:
type: string
example: Ensembl transcript
regex:
type: string
example: ^(?:(?:(?<id1>ENS[A-Z]*T\d{11})(?:\.\d+)?)|(?<id2>FBtr\d{7})|(?:(?<id3>MGP_[A-Za-z0-9]+_T\d{7})(?:\.\d+)?)|(?<id4>LRG_\d+t\d+(?:-\d)?)|(?<id5>(?:[A-Za-z0-9][A-Za-z0-9_]+)\.t?\d+[a-z]?(?:\.\d+)?)|(?<id6>Y[A-Z]{2}\d{3}[A-Z](?:-[A-Z])?(?:_[a-z]{1,3}RNA)?)|(?<id7>Q\d{4}_[a-z]{1,3}RNA)|(?<id8>[A-Z]{3}\d{1,3}(?:-\d)?_[a-z]{1,3}RNA)|(?<id9>snR\d+-?[A-Za-z]?_sno?RNA)|(?<id10>t[A-Z]\([ACGUX]{3}\)[A-Z]\d?_tRNA))$
prefix:
type: string
example: http://identifiers.org/ensembl/
catalog:
type: string
example: nbdc00054
category:
type: string
example: Transcript
examples:
type: array
items:
type: string
example:
- - ENST00000638000
- ENST00000307864
- ENSTRUT00000006732
- ENSAMET00000021072
- ENSAZOT00000021040
- ENST00000622541
- ENST00000462612
- ENSBTAT00000072441
- ENSAZOT00000005048
- ENST00000475822
glytoucan:
properties:
label:
type: string
example: GlyTouCan
regex:
type: string
example: ^(?<id>G[0-9]{5}[A-Z]{2})$
prefix:
type: string
example: http://identifiers.org/glytoucan/
catalog:
type: string
example: nbdc01535
category:
type: string
example: Glycan
examples:
type: array
items:
type: string
example:
- - G88006IV
- G53085MI
- G17896UT
- G50341PG
- G19379ID
- G08110WX
- G70101JE
- G45504EY
- G81263BG
- G02815KT
go:
properties:
label:
type: string
example: Gene ontology
regex:
type: string
example: ^GO[:_](?<id>\d{7})$
format:
type: string
example:
- GO:%s
- GO_%s
prefix:
type: string
example: http://purl.obolibrary.org/obo/GO_
catalog:
type: string
example: nbdc00074
category:
type: string
example: Function
examples:
type: array
items:
type: string
example:
- - GO:0005643
- GO:0097110
- GO:0097225
- GO:0052855
- GO:2000012
- GO:0042921
- GO:0019774
- GO:0085018
- GO:0009508
- GO:0046470
- - GO_0005643
- GO_0097110
- GO_0097225
- GO_0052855
- GO_2000012
- GO_0042921
- GO_0019774
- GO_0085018
- GO_0009508
- GO_0046470
hgnc:
properties:
label:
type: string
example: HGNC
regex:
type: string
example: ^(?:(?:HGNC|hgnc):)?(?<id>\d{1,5})$
format:
type: string
example:
- '%s'
- HGNC:%s
- hgnc:%s
prefix:
type: string
example: http://identifiers.org/hgnc/
catalog:
type: string
example: nbdc01774
category:
type: string
example: Gene
examples:
type: array
items:
type: string
example:
- - "26199"
- "38937"
- "14027"
- "21498"
- "18185"
- "1314"
- "25960"
- "2206"
- "22224"
- "19741"
- - HGNC:26199
- HGNC:38937
- HGNC:14027
- HGNC:21498
- HGNC:18185
- HGNC:1314
- HGNC:25960
- HGNC:2206
- HGNC:22224
- HGNC:19741
- - hgnc:26199
- hgnc:38937
- hgnc:14027
- hgnc:21498
- hgnc:18185
- hgnc:1314
- hgnc:25960
- hgnc:2206
- hgnc:22224
- hgnc:19741
hgnc_symbol:
properties:
label:
type: string
example: HGNC gene symbol
regex:
type: string
example: ^(?<id>[A-Za-z0-9_\-]+\@?)$
prefix:
type: string
example: http://identifiers.org/hgnc.symbol/
catalog:
type: string
example: nbdc01774
category:
type: string
example: Gene
examples:
type: array
items:
type: string
example:
- - MBNL2
- RGS20
- LINC02011
- IGHV1-14
- SH3RF2
- SPATA13
- HNRNPCP10
- LINC00334
- TMEM241
- RN7SL753P
hmdb:
properties:
label:
type: string
example: HMDB
regex:
type: string
example: ^(?:hmdb:)?(?<id>HMDB\d+)$
format:
type: string
example:
- '%s'
- hmdb:%s
prefix:
type: string
example: http://identifiers.org/hmdb/
catalog:
type: string
example: nbdc00909
category:
type: string
example: Compound
examples:
type: array
items:
type: string
example:
- - HMDB0029433
- HMDB0015609
- HMDB0000042
- HMDB0002360
- HMDB0003345
- HMDB0003550
- HMDB0036769
- HMDB0000935
- HMDB0002755
- HMDB0004369
- - hmdb:HMDB0029433
- hmdb:HMDB0015609
- hmdb:HMDB0000042
- hmdb:HMDB0002360
- hmdb:HMDB0003345
- hmdb:HMDB0003550
- hmdb:HMDB0036769
- hmdb:HMDB0000935
- hmdb:HMDB0002755
- hmdb:HMDB0004369
homologene:
properties:
label:
type: string
example: HomoloGene
regex:
type: string
example: ^(?<id>\d+)$
prefix:
type: string
example: http://identifiers.org/homologene/
catalog:
type: string
example: nbdc00101
category:
type: string
example: Ortholog
examples:
type: array
items:
type: string
example:
- - "117"
- "17"
- "6"
- "142"
- "55"
- "132"
- "61"
- "109"
- "137"
- "134"
hp:
properties:
label:
type: string
example: Human Phenotype Ontology
regex:
type: string
example: ^HP[:_](?<id>\d{7})$
format:
type: string
example:
- HP:%s
- HP_%s
prefix:
type: string
example: http://purl.obolibrary.org/obo/HP_
catalog:
type: string
example: nbdc02559
category:
type: string
example: Disease
examples:
type: array
items:
type: string
example:
- - HP:0001947
- HP:0031592
- HP:0012085
- HP:0000956
- HP:0025238
- HP:0002861
- HP:0001680
- HP:0004417
- HP:0001701
- HP:0025084
- - HP_0001947
- HP_0031592
- HP_0012085
- HP_0000956
- HP_0025238
- HP_0002861
- HP_0001680
- HP_0004417
- HP_0001701
- HP_0025084
human_protein_atlas:
properties:
label:
type: string
example: Human Protein Atlas
regex:
type: string
example: ^(?<id>ENSG\d{11})$
prefix:
type: string
example: http://www.proteinatlas.org/
catalog:
type: string
example: nbdc00905
category:
type: string
example: Protein
inchi_key:
properties:
label:
type: string
example: InChIKey
regex:
type: string
example: ^(?<id>[A-Z]{14}\-[A-Z]{10}(\-[A-Z])?)$
prefix:
type: string
example: https://identifiers.org/inchikey/
catalog:
type: string
example: FIXME
category:
type: string
example: Compound
examples:
type: array
items:
type: string
example:
- - RYYVLZVUVIJVGH-UHFFFAOYSA-N
- RZWGTXHSYZGXKF-UHFFFAOYSA-N
- RQQIIXFYTHWFKW-ZETCQYMHSA-N
- RALAARQREFCZJO-UHFFFAOYSA-N
- HVFRJJDZWVSUIB-UHFFFAOYSA-N
- KVNZVXVZQFTXNA-UHFFFAOYSA-N
- KVQUJTYBWCGJRS-UHFFFAOYSA-N
- AFGLQVAJWVTAJT-UHFFFAOYSA-N
- LHISABQPMWXWCC-UHFFFAOYSA-N
- ZSXCHLJCWRSMMS-UHFFFAOYSA-N
insdc:
properties:
label:
type: string
example: GenBank/ENA/DDBJ
regex:
type: string
example: ^(?:insdc:)?(?<id>[A-Z]\d{5}|[A-Z]{2}\d{6}|[A-Z]{4}\d{8}|[A-J][A-Z]{2}\d{5}|[A-Z]{4,}\d{9})(?:\.\d+)?$
prefix:
type: string
example: http://identifiers.org/insdc/
catalog:
type: string
example: nbdc02567
category:
type: string
example: Gene
examples:
type: array
items:
type: string
example:
- - U10991
- AF116914
- AK056978
- DQ440258
- U91725
- AY301270
- U32907
- AY261360
- AK001332
- U13261
intact:
properties:
label:
type: string
example: IntAct
regex:
type: string
example: ^(?<id>EBI\-[0-9]+)$
prefix:
type: string
example: http://identifiers.org/intact/
catalog:
type: string
example: nbdc00507
category:
type: string
example: Interaction
examples:
type: array
items:
type: string
example:
- - EBI-7947422
- EBI-15714708
- EBI-16225271
- EBI-4406290
- EBI-9026465
- EBI-6403471
- EBI-1113651
- EBI-562824
- EBI-9014072
- EBI-1784742
interpro:
properties:
label:
type: string
example: InterPro
regex:
type: string
example: ^(?<id>IPR\d{6})$
prefix:
type: string
example: http://identifiers.org/interpro/
catalog:
type: string
example: nbdc00108
category:
type: string
example: Domain
examples:
type: array
items:
type: string
example:
- - IPR038152
- IPR040448
- IPR036748
- IPR034266
- IPR005479
- IPR036365
- IPR000174
- IPR001334
- IPR000731
- IPR001767
kegg_compound:
properties:
label:
type: string
example: KEGG Compound
regex:
type: string
example: ^(?<id>C\d+)$
prefix:
type: string
example: http://identifiers.org/kegg.compound/
catalog:
type: string
example: nbdc00814
category:
type: string
example: Compound
kegg_disease:
properties:
label:
type: string
example: KEGG Disease
regex:
type: string
example: ^KEGG:H(?<id>\d+)$
prefix:
type: string
example: http://identifiers.org/kegg.disease/
catalog:
type: string
example: nbdc00813
category:
type: string
example: Disease
kegg_drug:
properties:
label:
type: string
example: KEGG Drug
regex:
type: string
example: ^(?<id>D\d+)$
prefix:
type: string
example: http://identifiers.org/kegg.drug/
catalog:
type: string
example: nbdc00812
category:
type: string
example: Drug
kegg_genes:
properties:
label:
type: string
example: KEGG Genes
regex:
type: string
example: ^\w+:[\w\d\.-]*$
prefix:
type: string
example: http://identifiers.org/kegg.genes/
catalog:
type: string
example: nbdc00532
category:
type: string
example: Gene, Protein
kegg_orthology:
properties:
label:
type: string
example: KEGG Orthology
regex:
type: string
example: ^(?<id>K\d+)$
prefix:
type: string
example: http://identifiers.org/kegg.orthology/
catalog:
type: string
example: nbdc00817
category:
type: string
example: Ortholog
kegg_pathway:
properties:
label:
type: string
example: KEGG Pathway
regex:
type: string
example: ^(?<id>\w{2,4}\d{5})$
prefix:
type: string
example: http://identifiers.org/kegg.pathway/
catalog:
type: string
example: nbdc00118
category:
type: string
example: Pathway
kegg_reaction:
properties:
label:
type: string
example: KEGG Reaction
regex:
type: string
example: ^(?<id>R\d+)$
prefix:
type: string
example: http://identifiers.org/kegg.reaction/
catalog:
type: string
example: nbdc00818
category:
type: string
example: Interaction
lrg:
properties:
label:
type: string
example: LRG
regex:
type: string
example: ^(?<id>LRG_\d+)$
prefix:
type: string
example: http://identifiers.org/lrg/
catalog:
type: string
example: nbdc02566
category:
type: string
example: Gene
examples:
type: array
items:
type: string
example:
- - LRG_41
- LRG_356
- LRG_147
- LRG_660
- LRG_498
- LRG_364
- LRG_203
- LRG_162
- LRG_1271
- LRG_884
mbgd_gene:
properties:
label:
type: string
example: MBGD gene
regex:
type: string
example: ^(?<id>[a-z0-9]+:[A-Z0-9_\.-]+)$
prefix:
type: string
example: http://mbgd.genome.ad.jp/rdf/resource/gene/
catalog:
type: string
example: nbdc00130
category:
type: string
example: Gene
examples:
type: array
items:
type: string
example:
- - ash:AL1_RS04670
- ash:AL1_RS08245
- ash:AL1_RS02870
- ash:AL1_RS06610
- ash:AL1_RS06290
- ash:AL1_RS07260
- ash:AL1_RS08410
- ash:AL1_RS01705
- ash:AL1_RS02510
- ash:AL1_RS07245
mbgd_organism:
properties:
label:
type: string
example: MBGD organism
regex:
type: string
example: ^(?<id>[a-z0-9]+)$
prefix:
type: string
example: http://mbgd.genome.ad.jp/rdf/resource/organism/
catalog:
type: string
example: nbdc00130
category:
type: string
example: Taxonomy
examples:
type: array
items:
type: string
example:
- - lac
- pfl
- cou
- bvn
- btd
- ctjt
- sha
- lmoj
- dpi
- arp
meddra:
properties:
label:
type: string
example: MedDRA
regex:
type: string
example: ^(?:(?:MedDRA|meddra):)?(?<id>\d+)$
format:
type: string
example:
- '%s'
- MedDRA:%s
- meddra:%s
prefix:
type: string
example: http://identifiers.org/meddra/
catalog:
type: string
example: nbdc02564
category:
type: string
example: Disease
examples:
type: array
items:
type: string
example:
- - "10008033"
- "10027710"
- "10062506"
- "10040493"
- "10013611"
- "10065857"
- "10063143"
- "10022599"
- "10042342"
- "10047883"
- - MedDRA:10008033
- MedDRA:10027710
- MedDRA:10062506
- MedDRA:10040493
- MedDRA:10013611
- MedDRA:10065857
- MedDRA:10063143
- MedDRA:10022599
- MedDRA:10042342
- MedDRA:10047883
- - meddra:10008033
- meddra:10027710
- meddra:10062506
- meddra:10040493
- meddra:10013611
- meddra:10065857
- meddra:10063143
- meddra:10022599
- meddra:10042342
- meddra:10047883
medgen:
properties:
label:
type: string
example: MedGen
regex:
type: string
example: ^(?<id>CN?\d{4,7})$
prefix:
type: string
example: http://identifiers.org/medgen/
catalog:
type: string
example: nbdc02560
category:
type: string
example: Disease
examples:
type: array
items:
type: string
example:
- - C0264897
- C0028860
- C0018818
- C1848392
- C0006389
- C0020517
- C0000364
- CN227118
- CN203043
- CN292950
mesh:
properties:
label:
type: string
example: MeSH
regex:
type: string
example: ^(?<id>[CD]\d{6,9})$
prefix:
type: string
example: http://identifiers.org/mesh/
catalog:
type: string
example: nbdc00132
category:
type: string
example: Disease
examples:
type: array
items:
type: string
example:
- - D002065
- C562829
- C566582
- D010623
- D003327
- D001715
- D000453
- D010260
- C537322
- C563418
mgi:
properties:
label:
type: string
example: MGI
regex:
type: string
example: ^(?:MGI|mgi):(?<id>\d{5,})$
format:
type: string
example:
- MGI:%s
- mgi:%s
prefix:
type: string
example: 'http://identifiers.org/mgi/MGI:'
catalog:
type: string
example: nbdc00135
category:
type: string
example: Gene
examples:
type: array
items:
type: string
example:
- - MGI:2387184
- MGI:1920977
- MGI:2442415
- MGI:1098644
- MGI:1196250
- MGI:1914934
- MGI:1914238
- MGI:1919300
- MGI:1914807
- MGI:2145261
- - mgi:2387184
- mgi:1920977
- mgi:2442415
- mgi:1098644
- mgi:1196250
- mgi:1914934
- mgi:1914238
- mgi:1919300
- mgi:1914807
- mgi:2145261
mirbase:
properties:
label:
type: string
example: miRBase
regex:
type: string
example: ^(?<id>MI\d{7})$
prefix:
type: string
example: http://identifiers.org/mirbase/
catalog:
type: string
example: nbdc00136
category:
type: string
example: Transcript
examples:
type: array
items:
type: string
example:
- - MI0003587
- MI0000252
- MI0000811
- MI0014201
- MI0003578
- MI0000293
- MI0006384
- MI0006361
- MI0000480
- MI0006419
mondo:
properties:
label:
type: string
example: MONDO
regex:
type: string
example: ^MONDO[:_](?<id>\d{7})$
format:
type: string
example:
- MONDO:%s
- MONDO_%s
prefix:
type: string
example: http://purl.obolibrary.org/obo/MONDO_
catalog:
type: string
example: nbdc02563
category:
type: string
example: Disease
examples:
type: array
items:
type: string
example:
- - MONDO:0000115
- MONDO:0002345
- MONDO:0011571
- MONDO:0020035
- MONDO:0020920
- MONDO:0004627
- MONDO:0005480
- MONDO:0010852
- MONDO:0002053
- MONDO:0015758
- - MONDO_0000115
- MONDO_0002345
- MONDO_0011571
- MONDO_0020035
- MONDO_0020920
- MONDO_0004627
- MONDO_0005480
- MONDO_0010852
- MONDO_0002053
- MONDO_0015758
nando:
properties:
label:
type: string
example: NANDO
regex:
type: string
example: ^NANDO[:_](?<id>\d{7})$
format:
type: string
example:
- NANDO:%s
- NANDO_%s
prefix:
type: string
example: http://nanbyodata.jp/ontology/NANDO_
catalog:
type: string
example: nbdc02557
category:
type: string
example: Disease
examples:
type: array
items:
type: string
example:
- - NANDO:1200461
- NANDO:1200466
- NANDO:1200851
- NANDO:1200061
- NANDO:1200315
- NANDO:1200365
- NANDO:1200922
- NANDO:1200705
- NANDO:2200074
- NANDO:1200030
- - NANDO_1200461
- NANDO_1200466
- NANDO_1200851
- NANDO_1200061
- NANDO_1200315
- NANDO_1200365
- NANDO_1200922
- NANDO_1200705
- NANDO_2200074
- NANDO_1200030
ncbigene:
properties:
label:
type: string
example: NCBI gene
regex:
type: string
example: ^(?<id>\d+)$
prefix:
type: string
example: http://identifiers.org/ncbigene/
catalog:
type: string
example: nbdc00073
category:
type: string
example: Gene
examples:
type: array
items:
type: string
example:
- - "63962027"
- "1046"
- "63961921"
- "102606930"
- "100472895"
- "407025"
- "84148"
- "88"
- "31157"
- "100463227"
ncbiprotein:
properties:
label:
type: string
example: NCBI protein
regex:
type: string
example: ^(?:(?:\w+\d+(?:\.\d+)?)|(?:NP_\d+))$
prefix:
type: string
example: http://identifiers.org/ncbiprotein/
catalog:
type: string
example: nbdc00584
category:
type: string
example: Protein
oma_group:
properties:
label:
type: string
example: OMA group
regex:
type: string
example: ^(?<id>[A-Z]+)$
prefix:
type: string
example: http://identifiers.org/oma.grp/
catalog:
type: string
example: nbdc02221
category:
type: string
example: Ortholog
examples:
type: array
items:
type: string
example:
- - RVAAYKY
- LFVHAIL
- EMSPITC
- NQSHFFA
- AYTHYSY
- PRPKYDP
- WSRIHIV
- DFGGWKI
- FHVAHGE
- PYVYVTH
oma_protein:
properties:
label:
type: string
example: OMA protein
regex:
type: string
example: ^(?<id>[A-Z]{3}[A-Z0-9]{2}[0-9]{5,6})$
prefix:
type: string
example: http://identifiers.org/oma.protein/
catalog:
type: string
example: nbdc02221
category:
type: string
example: Protein
examples:
type: array
items:
type: string
example:
- - ACIB400217
- ACIB400465
- HUMAN00333
- HUMAN01170
- HUMAN00470
- HUMAN03367
- ACIB400486
- HUMAN01061
- HUMAN02190
- HUMAN02112
omim_gene:
properties:
label:
type: string
example: OMIM gene
regex:
type: string
example: ^(?:O?MIM:)?(?<id>\d{6})$
format:
type: string
example:
- '%s'
- OMIM:%s
- MIM:%s
prefix:
type: string
example: http://identifiers.org/mim/
catalog:
type: string
example: nbdc00154
category:
type: string
example: Gene
examples:
type: array
items:
type: string
example:
- - "604810"
- "115460"
- "608706"
- "300181"
- "102575"
- "601280"
- "602832"
- "601604"
- "177075"
- "608977"
- - OMIM:604810
- OMIM:115460
- OMIM:608706
- OMIM:300181
- OMIM:102575
- OMIM:601280
- OMIM:602832
- OMIM:601604
- OMIM:177075
- OMIM:608977
- - MIM:604810
- MIM:115460
- MIM:608706
- MIM:300181
- MIM:102575
- MIM:601280
- MIM:602832
- MIM:601604
- MIM:177075
- MIM:608977
omim_phenotype:
properties:
label:
type: string
example: OMIM phenotype
regex:
type: string
example: ^(?:O?MIM:)?(?<id>\d{6})$
format:
type: string
example:
- '%s'
- OMIM:%s
- MIM:%s
prefix:
type: string
example: http://identifiers.org/mim/
catalog:
type: string
example: nbdc00154
category:
type: string
example: Disease
examples:
type: array
items:
type: string
example:
- - "207780"
- "236100"
- "237500"
- "300716"
- "125310"
- "165199"
- "617175"
- "137600"
- "600089"
- "601317"
- - OMIM:207780
- OMIM:236100
- OMIM:237500
- OMIM:300716
- OMIM:125310
- OMIM:165199
- OMIM:617175
- OMIM:137600
- OMIM:600089
- OMIM:601317
- - MIM:207780
- MIM:236100
- MIM:237500
- MIM:300716
- MIM:125310
- MIM:165199
- MIM:617175
- MIM:137600
- MIM:600089
- MIM:601317
orphanet:
properties:
label:
type: string
example: Orphanet
regex:
type: string
example: ^(?:ORPHA|ORDO|Orphanet)[:_](?<id>[A-Z0-9]+)$
format:
type: string
example:
- ORPHA:%s
- ORDO:%s
- Orphanet:%s
- Orphanet_%s
prefix:
type: string
example: http://identifiers.org/orphanet.ordo/Orphanet_
catalog:
type: string
example: nbdc01422
category:
type: string
example: Disease
examples:
type: array
items:
type: string
example:
- - ORPHA:101078
- ORPHA:596
- ORPHA:1934
- ORPHA:1047
- ORPHA:60025
- ORPHA:166090
- ORPHA:275745
- ORPHA:1171
- ORPHA:93277
- ORPHA:247598
- - ORDO:101078
- ORDO:596
- ORDO:1934
- ORDO:1047
- ORDO:60025
- ORDO:166090
- ORDO:275745
- ORDO:1171
- ORDO:93277
- ORDO:247598
- - Orphanet:101078
- Orphanet:596
- Orphanet:1934
- Orphanet:1047
- Orphanet:60025
- Orphanet:166090
- Orphanet:275745
- Orphanet:1171
- Orphanet:93277
- Orphanet:247598
- - Orphanet_101078
- Orphanet_596
- Orphanet_1934
- Orphanet_1047
- Orphanet_60025
- Orphanet_166090
- Orphanet_275745
- Orphanet_1171
- Orphanet_93277
- Orphanet_247598
pdb:
properties:
label:
type: string
example: PDB
regex:
type: string
example: ^(?<id>[0-9][A-Za-z0-9]{3})$
prefix:
type: string
example: http://rdf.wwpdb.org/pdb/
catalog:
type: string
example: nbdc00156
category:
type: string
example: Structure
examples:
type: array
items:
type: string
example:
- - 3PFQ
- 2OUY
- 6EBX
- 5GHP
- 6ETH
- 1Y28
- 6FB2
- 5JO3
- 2JQZ
- 5L5P
- - 3pfq
- 2ouy
- 6ebx
- 5ghp
- 6eth
- 1y28
- 6fb2
- 5jo3
- 2jqz
- 5l5p
pfam:
properties:
label:
type: string
example: Pfam
regex:
type: string
example: ^(?<id>PF\d{5})$
prefix:
type: string
example: http://identifiers.org/pfam/
catalog:
type: string
example: nbdc00163
category:
type: string
example: Domain
examples:
type: array
items:
type: string
example:
- - PF03719
- PF03726
- PF02809
- PF00105
- PF00250
- PF00412
- PF01412
- PF00459
- PF02532
- PF01226
pubchem_compound:
properties:
label:
type: string
example: PubChem compound
regex:
type: string
example: ^(?:CID)?(?<id>\d+)$
format:
type: string
example:
- '%s'
- CID%s
prefix:
type: string
example: http://identifiers.org/pubchem.compound/
catalog:
type: string
example: nbdc00641
category:
type: string
example: Compound
examples:
type: array
items:
type: string
example:
- - "9548669"
- "160419"
- "9869929"
- "76333303"
- "9868491"
- "27854"
- "76329169"
- "3448"
- "296"
- "10371227"
- - CID9548669
- CID160419
- CID9869929
- CID76333303
- CID9868491
- CID27854
- CID76329169
- CID3448
- CID296
- CID10371227
pubchem_substance:
properties:
label:
type: string
example: PubChem substance
regex:
type: string
example: ^(?:SID)?(?<id>\d+)$
format:
type: string
example:
- '%s'
- SID%s
prefix:
type: string
example: http://identifiers.org/pubchem.substance/
catalog:
type: string
example: nbdc00642
category:
type: string
example: Compound
examples:
type: array
items:
type: string
example:
- - "15229855"
- "15277848"
- "15782795"
- "16076657"
- "16035895"
- "12012900"
- "15378994"
- "14850434"
- "14847540"
- "15271473"
- - SID15229855
- SID15277848
- SID15782795
- SID16076657
- SID16035895
- SID12012900
- SID15378994
- SID14850434
- SID14847540
- SID15271473
pubmed:
properties:
label:
type: string
example: PubMed
regex:
type: string
example: ^(?:pmid:|PMID:)?(?<id>\d+)$
format:
type: string
example:
- '%s'
- pmid:%s
- PMID:%s
prefix:
type: string
example: http://identifiers.org/pubmed/
catalog:
type: string
example: nbdc00179
category:
type: string
example: Literature
examples:
type: array
items:
type: string
example:
- - "19281226"
- "19879151"
- "20858243"
- "10773016"
- "16527252"
- "28499733"
- "10397770"
- "15149666"
- "23861362"
- "10577920"
- - pmid:19281226
- pmid:19879151
- pmid:20858243
- pmid:10773016
- pmid:16527252
- pmid:28499733
- pmid:10397770
- pmid:15149666
- pmid:23861362
- pmid:10577920
- - PMID:19281226
- PMID:19879151
- PMID:20858243
- PMID:10773016
- PMID:16527252
- PMID:28499733
- PMID:10397770
- PMID:15149666
- PMID:23861362
- PMID:10577920
reactome_pathway:
properties:
label:
type: string
example: Reactome pathway
regex:
type: string
example: ^(?<id>R-[A-Z]{3}-\d+)(?:\.\d+)?$
prefix:
type: string
example: http://identifiers.org/reactome/
catalog:
type: string
example: nbdc00185
category:
type: string
example: Pathway
examples:
type: array
items:
type: string
example:
- - R-HSA-165159
- R-DRE-1630316
- R-SCE-9634635
- R-DRE-140834
- R-HSA-2142753
- R-BTA-383280
- R-MMU-5218900
- R-RNO-5654219
- R-MMU-8875791
- R-MMU-9648025
reactome_reaction:
properties:
label:
type: string
example: Reactome reaction
regex:
type: string
example: ^(?<id>R-[A-Z]{3}-\d+)(?:\.\d+)?$
prefix:
type: string
example: http://identifiers.org/reactome/
catalog:
type: string
example: nbdc00185
category:
type: string
example: Reaction
examples:
type: array
items:
type: string
example:
- - R-DRE-1482961
- R-DRE-6814409
- R-HSA-2395869
- R-HSA-1222722
- R-HSA-893583
- R-MMU-158484
- R-HSA-8875071
- R-HSA-372519
- R-HSA-6797627
- R-DRE-975814
refseq_genomic:
properties:
label:
type: string
example: RefSeq genomic
regex:
type: string
example: ^(?<id>(?:AC_|N[CGTW]_|NZ_[A-Z]+)\d+)(?:\.\d+)?$
prefix:
type: string
example: http://identifiers.org/refseq/
catalog:
type: string
example: nbdc00187
category:
type: string
example: Gene
examples:
type: array
items:
type: string
example:
- - NG_004671
- NG_011844
- NG_008481
- NG_007973
- NG_001091
- NG_008005
- NG_023230
- NG_046394
- NG_009617
- NG_016421
- NG_021472
- - NG_004671.3
- NG_011844.2
- NG_008481.4
- NG_007973.1
- NG_001091.7
- NG_008005.1
- NG_023230.1
- NG_046394.1
- NG_009617.1
- NG_016421.2
- NG_021472.2
refseq_protein:
properties:
label:
type: string
example: RefSeq protein
regex:
type: string
example: ^(?<id>[ANXYWZ]P_\d+)(?:\.\d+)?$
prefix:
type: string
example: http://identifiers.org/refseq/
catalog:
type: string
example: nbdc00187
category:
type: string
example: Protein
examples:
type: array
items:
type: string
example:
- - NP_001171968
- NP_001365494
- NP_000015
- XP_011522750
- XP_011516190
- XP_005265876
- WP_016919164
- WP_080513319
- YP_001687722
- YP_001966380
- - NP_001171968.1
- NP_001365494.1
- NP_000015.2
- XP_011522750.1
- XP_011516190.1
- XP_005265876.1
- WP_016919164.1
- WP_080513319.1
- YP_001687722.1
- YP_001966380.1
refseq_rna:
properties:
label:
type: string
example: RefSeq RNA
regex:
type: string
example: ^(?<id>(?:NM|NR|XM|XR)_\d+)(?:\.\d+)?$
prefix:
type: string
example: http://identifiers.org/refseq/
catalog:
type: string
example: nbdc00187
category:
type: string
example: Transcript
examples:
type: array
items:
type: string
example:
- - XR_001747779
- XM_017013006
- NM_001199636
- XM_011532496
- NM_001110
- NR_170162
- NM_020113
- NM_001031805
- NR_027673
- XR_934019
- - XR_001747779.1
- XM_017013006.1
- NM_001199636.2
- XM_011532496.1
- NM_001110.4
- NR_170162.1
- NM_020113.3
- NM_001031805.1
- NR_027673.1
- XR_934019.3
rgd:
properties:
label:
type: string
example: RGD
regex:
type: string
example: ^(?:(?:RGD|rgd):)?(?<id>\d{4,})$
format:
type: string
example:
- '%s'
- RGD:%s
- rgd:%s
prefix:
type: string
example: http://identifiers.org/rgd/
catalog:
type: string
example: nbdc00188
category:
type: string
example: Gene
examples:
type: array
items:
type: string
example:
- - "1308312"
- "1311120"
- "1309724"
- "1565514"
- "7683241"
- "1307957"
- "71036"
- "1307876"
- "1308965"
- "1305482"
- - RGD:1308312
- RGD:1311120
- RGD:1309724
- RGD:1565514
- RGD:7683241
- RGD:1307957
- RGD:71036
- RGD:1307876
- RGD:1308965
- RGD:1305482
- - rgd:1308312
- rgd:1311120
- rgd:1309724
- rgd:1565514
- rgd:7683241
- rgd:1307957
- rgd:71036
- rgd:1307876
- rgd:1308965
- rgd:1305482
rhea:
properties:
label:
type: string
example: Rhea
regex:
type: string
example: ^(?<id>\d{5})$
prefix:
type: string
example: http://identifiers.org/rhea/
catalog:
type: string
example: nbdc02083
category:
type: string
example: Reaction
examples:
type: array
items:
type: string
example:
- - "10253"
- "10818"
- "13517"
- "11136"
- "13729"
- "10240"
- "11728"
- "16870"
- "10732"
- "11278"
sra_accession:
properties:
label:
type: string
example: SRA accession
regex:
type: string
example: ^(?<id>[SED]RA\d+)$
prefix:
type: string
example: http://identifiers.org/insdc.sra/
catalog:
type: string
example: nbdc00687
category:
type: string
example: Submission
examples:
type: array
items:
type: string
example:
- - DRA000741
- DRA000768
- DRA001014
- DRA000833
- SRA000144
- SRA000605
- SRA008879
- ERA007227
- ERA011638
- ERA013580
sra_analysis:
properties:
label:
type: string
example: SRA analysis
regex:
type: string
example: ^(?<id>[SED]RZ\d+)$
prefix:
type: string
example: http://identifiers.org/insdc.sra/
catalog:
type: string
example: nbdc00687
category:
type: string
example: Analysis
examples:
type: array
items:
type: string
example:
- - DRZ000249
- DRZ000087
- DRZ003045
- DRZ000829
- SRZ168127
- SRZ008405
- SRZ010259
- SRZ011419
- SRZ006662
- SRZ010567
sra_experiment:
properties:
label:
type: string
example: SRA experiment
regex:
type: string
example: ^(?<id>[SED]RX\d+)$
prefix:
type: string
example: http://identifiers.org/insdc.sra/
catalog:
type: string
example: nbdc00687
category:
type: string
example: Experiment
examples:
type: array
items:
type: string
example:
- - DRX000585
- DRX000114
- DRX000613
- DRX000681
- SRX000921
- SRX000254
- SRX000626
- ERX149204
- ERX001260
- ERX000427
sra_project:
properties:
label:
type: string
example: SRA project
regex:
type: string
example: ^(?<id>[SED]RP\d+)$
prefix:
type: string
example: http://identifiers.org/insdc.sra/
catalog:
type: string
example: nbdc00687
category:
type: string
example: Project
examples:
type: array
items:
type: string
example:
- - DRP000994
- DRP000877
- DRP000649
- DRP000147
- SRP266466
- SRP297268
- SRP000065
- ERP001266
- ERP007720
- ERP104141
sra_run:
properties:
label:
type: string
example: SRA run
regex:
type: string
example: ^(?<id>[SED]RR\d+)$
prefix:
type: string
example: http://identifiers.org/insdc.sra/
catalog:
type: string
example: nbdc00687
category:
type: string
example: SequenceRun
examples:
type: array
items:
type: string
example:
- - DRR000834
- DRR000683
- DRR000264
- DRR000453
- SRR029947
- SRR000290
- SRR004854
- ERR499402
- ERR004130
- ERR000715
sra_sample:
properties:
label:
type: string
example: SRA sample
regex:
type: string
example: ^(?<id>[SED]RS\d+)$
prefix:
type: string
example: http://identifiers.org/insdc.sra/
catalog:
type: string
example: nbdc00687
category:
type: string
example: Sample
examples:
type: array
items:
type: string
example:
- - DRS001431
- DRS001371
- DRS000894
- DRS000386
- SRS2618009
- SRS7846025
- SRS000159
- ERS452503
- ERS000126
- ERS010423
taxonomy:
properties:
label:
type: string
example: Taxonomy
regex:
type: string
example: ^(?<id>\d+)$
prefix:
type: string
example: http://identifiers.org/taxonomy/
catalog:
type: string
example: nbdc00700
category:
type: string
example: Taxonomy
examples:
type: array
items:
type: string
example:
- - "1171376"
- "484906"
- "1214242"
- "1124991"
- "1037911"
- "1266844"
- "243277"
- "696747"
- "263820"
- "713604"
togovar:
properties:
label:
type: string
example: TogoVar variant
regex:
type: string
example: ^(?<id>tgv\d+)$
prefix:
type: string
example: http://togovar.biosciencedbc.jp/variation/
catalog:
type: string
example: nbdc02359
category:
type: string
example: Variant
examples:
type: array
items:
type: string
example:
- - tgv100005930
- tgv100000890
- tgv16331
- tgv10000341
- tgv21330879
- tgv15847
- tgv1354996
- tgv100002132
- tgv16568524
- tgv62035164
uniprot:
properties:
label:
type: string
example: UniProt
regex:
type: string
example: ^(?:(?<id1>[A-NR-Z][0-9](?:[A-Z][A-Z0-9][A-Z0-9][0-9]){1,2}(?:-\d+)?)|(?<id2>[OPQ][0-9][A-Z0-9][A-Z0-9][A-Z0-9][0-9](?:-\d+)?)(?:\.\d+)?)$
prefix:
type: string
example: http://purl.uniprot.org/uniprot/
catalog:
type: string
example: nbdc00221
category:
type: string
example: Protein
examples:
type: array
items:
type: string
example:
- - A0A174V9D2
- A0A1V4U2Y9
- Q7NXD4
- P0AAM3
- O43423
- D4IJI4
- Q66SS1
- B5IDU9
- D3TBR4
- D4ILS5
uniprot_mnemonic:
properties:
label:
type: string
example: UniProt mnemonic
regex:
type: string
example: ^(?<id>[A-Z0-9]+_[A-Z0-9]{0,5})$
prefix:
type: string
example: http://purl.uniprot.org/uniprot/
catalog:
type: string
example: nbdc00221
category:
type: string
example: Protein
examples:
type: array
items:
type: string
example:
- - 2ABA_ORYSJ
- 33K_ADES1
- 1003L_ASFK5
- 1A1D_VARPS
- 1B02_GORGO
- 1003L_ASFP4
- 1433B_MACFA
- 1107L_ASFWA
- 3BHS1_MOUSE
- 14331_SCHMA
wikipathways:
properties:
label:
type: string
example: WikiPathways
regex:
type: string
example: ^(?<id>WP\d{1,5})(?:\_r\d+)?$
prefix:
type: string
example: http://identifiers.org/wikipathways/
catalog:
type: string
example: nbdc02116
category:
type: string
example: Pathway
examples:
type: array
items:
type: string
example:
- - WP1531
- WP4312
- WP4877
- WP5020
- WP4400
- WP4474
- WP4183
- WP3650
- WP4545
- WP4462
- - WP1531_r107120
- WP4312_r104287
- WP4877_r116595
- WP5020_r114721
- WP4400_r108112
- WP4474_r102094
- WP4183_r106890
- WP3650_r110699
- WP4545_r116235
- WP4462_r102079
400:
description: Bad request
/config/dataset/{dataset}:
get:
tags:
- "config"
summary: Get selected dataset config
operationId: getDataset
parameters:
- name: dataset
in: path
type: string
description: A key from https://github.com/dbcls/togoid-config/blob/main/config/dataset.yaml
required: true
responses:
200:
description: "Successful operation"
schema:
type: "object"
properties:
label:
type: string
example: UniProt
regex:
type: string
example: ^(?:(?<id1>[A-NR-Z][0-9](?:[A-Z][A-Z0-9][A-Z0-9][0-9]){1,2}(?:-\d+)?)|(?<id2>[OPQ][0-9][A-Z0-9][A-Z0-9][A-Z0-9][0-9](?:-\d+)?)(?:\.\d+)?)$
prefix:
type: string
example: http://purl.uniprot.org/uniprot/
catalog:
type: string
example: nbdc00221
category:
type: string
example: Protein
examples:
type: array
items:
type: string
example:
- A0A174V9D2
- A0A1V4U2Y9
- Q7NXD4
- P0AAM3
- O43423
- D4IJI4
- Q66SS1
- B5IDU9
- D3TBR4
- D4ILS5
400:
description: Bad request
/config/relation:
get:
tags:
- "config"
summary: Get all database relation
operationId: getAllRelation
responses:
200:
description: "Successful operation"
schema:
type: "object"
properties:
affy_probeset-ncbigene:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: detects
reverse:
type: object
properties:
label:
type: string
example: is target of
chebi-inchi_key:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is represented as
reverse:
type: object
properties:
label:
type: string
example: represents
chembl_compound-chebi:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is equivalent to
reverse:
type: object
properties:
label:
type: string
example: is equivalent to
chembl_compound-chembl_target:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: interacts with
reverse:
type: object
properties:
label:
type: string
example: interacts with
chembl_compound-drugbank:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
chembl_compound-hmdb:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
chembl_compound-inchi_key:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is represented as
reverse:
type: object
properties:
label:
type: string
example: represents
chembl_compound-mesh:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has related disease
reverse:
type: object
properties:
label:
type: string
example: is related with
chembl_compound-pubchem_compound:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
chembl_compound-pubchem_substance:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is equivalent to
reverse:
type: object
properties:
label:
type: string
example: is equivalent to
chembl_compound-pubmed:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has reference
reverse:
type: object
properties:
label:
type: string
example: is reference of
chembl_target-ensembl_gene:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is product of gene
reverse:
type: object
properties:
label:
type: string
example: has gene product
chembl_target-go:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has GO cellular component
reverse:
type: object
properties:
label:
type: string
example: is GO cellular component of
chembl_target-interpro:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has protein domain
reverse:
type: object
properties:
label:
type: string
example: is in protein
chembl_target-pdb:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has 3D structure
reverse:
type: object
properties:
label:
type: string
example: is 3D structure of
chembl_target-pfam:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has protein domain
reverse:
type: object
properties:
label:
type: string
example: is in protein
chembl_target-reactome_pathway:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: participates in pathway
reverse:
type: object
properties:
label:
type: string
example: has participant molecule
chembl_target-uniprot:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is equivalent to
reverse:
type: object
properties:
label:
type: string
example: is equivalent to
clinvar-medgen:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has related disease
reverse:
type: object
properties:
label:
type: string
example: is related with
doid-mesh:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
doid-omim_phenotype:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
ensembl_gene-affy_probeset:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is target of
reverse:
type: object
properties:
label:
type: string
example: detects
ensembl_gene-ensembl_protein:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has gene product
reverse:
type: object
properties:
label:
type: string
example: is product of gene
ensembl_gene-ensembl_transcript:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is transcribed to
reverse:
type: object
properties:
label:
type: string
example: is transcribed from
ensembl_gene-hgnc:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
ensembl_gene-ncbigene:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
ensembl_gene-uniprot:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has gene product
reverse:
type: object
properties:
label:
type: string
example: is product of gene
ensembl_protein-ensembl_transcript:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is tranlated from
reverse:
type: object
properties:
label:
type: string
example: is translated to
ensembl_transcript-affy_probeset:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is target of
reverse:
type: object
properties:
label:
type: string
example: detects
ensembl_transcript-go:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has GO annotation
reverse:
type: object
properties:
label:
type: string
example: is GO annotation of
ensembl_transcript-hgnc:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is transcribed from
reverse:
type: object
properties:
label:
type: string
example: is transcribed to
ensembl_transcript-refseq_rna:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
glytoucan-doid:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has related disease
reverse:
type: object
properties:
label:
type: string
example: is related with
glytoucan-uniprot:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is attached to
reverse:
type: object
properties:
label:
type: string
example: is modified with
hgnc-ccds:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
hgnc-ec:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has EC number
reverse:
type: object
properties:
label:
type: string
example: is EC number of
hgnc-ensembl_gene:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
hgnc-hgnc_symbol:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has synonym
reverse:
type: object
properties:
label:
type: string
example: is synonym of
hgnc-insdc:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
hgnc-lrg:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
hgnc-mgi:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is orthologous to
reverse:
type: object
properties:
label:
type: string
example: is orthologous to
hgnc-mirbase:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is transcribed to
reverse:
type: object
properties:
label:
type: string
example: is transcribed from
hgnc-ncbigene:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
hgnc-omim_gene:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
hgnc-pubmed:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has reference
reverse:
type: object
properties:
label:
type: string
example: is reference of
hgnc-refseq_rna:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is transcribed to
reverse:
type: object
properties:
label:
type: string
example: is transcribed from
hgnc-rgd:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is orthologous to
reverse:
type: object
properties:
label:
type: string
example: is orthologous to
hgnc-uniprot:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has gene product
reverse:
type: object
properties:
label:
type: string
example: is product of gene
homologene-ncbigene:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has orthologous group member
reverse:
type: object
properties:
label:
type: string
example: is member of orthologous group
interpro-go:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has GO annotation
reverse:
type: object
properties:
label:
type: string
example: is GO annotation of
interpro-pdb:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is in structure
reverse:
type: object
properties:
label:
type: string
example: has protein domain
interpro-pfam:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
interpro-pubmed:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has reference
reverse:
type: object
properties:
label:
type: string
example: is reference of
interpro-reactome_pathway:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: participates in pathway
reverse:
type: object
properties:
label:
type: string
example: has protein domain in pathway
interpro-uniprot:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is in protein
reverse:
type: object
properties:
label:
type: string
example: has protein domain
mbgd_gene-uniprot:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has gene product
reverse:
type: object
properties:
label:
type: string
example: is product of gene
mbgd_organism-taxonomy:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is equivalent to
reverse:
type: object
properties:
label:
type: string
example: is equivalent to
medgen-hp:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
medgen-mesh:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
medgen-mondo:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
medgen-ncbigene:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is related with
reverse:
type: object
properties:
label:
type: string
example: has related disease
medgen-omim_phenotype:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
medgen-orphanet:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
mondo-doid:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
mondo-hp:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
mondo-meddra:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
mondo-mesh:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
mondo-omim_phenotype:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
mondo-orphanet:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
nando-mondo:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
ncbigene-ensembl_gene:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
ncbigene-ensembl_protein:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has gene product
reverse:
type: object
properties:
label:
type: string
example: is product of gene
ncbigene-ensembl_transcript:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is transcribed to
reverse:
type: object
properties:
label:
type: string
example: is transcribed from
ncbigene-go:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has GO annotation
reverse:
type: object
properties:
label:
type: string
example: is GO annotation of
ncbigene-hgnc:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
ncbigene-mirbase:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is transcribed to
reverse:
type: object
properties:
label:
type: string
example: is transcribed from
ncbigene-omim_gene:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
ncbigene-refseq_genomic:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
ncbigene-refseq_protein:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has gene product
reverse:
type: object
properties:
label:
type: string
example: is product of gene
ncbigene-refseq_rna:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is transcribed to
reverse:
type: object
properties:
label:
type: string
example: is transcribed from
ncbigene-taxonomy:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is gene of organism
reverse:
type: object
properties:
label:
type: string
example: has gene
oma_protein-ensembl_gene:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is product of gene
reverse:
type: object
properties:
label:
type: string
example: has gene product
oma_protein-ensembl_transcript:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is tranlated from
reverse:
type: object
properties:
label:
type: string
example: is translated to
oma_protein-uniprot:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is equivalent to
reverse:
type: object
properties:
label:
type: string
example: is equivalent to
orphanet-meddra:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
orphanet-mesh:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
orphanet-omim_phenotype:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
pdb-go:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has GO annotation
reverse:
type: object
properties:
label:
type: string
example: is GO annotation of
pdb-interpro:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has protein domain
reverse:
type: object
properties:
label:
type: string
example: is in protein
pdb-pfam:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has protein domain
reverse:
type: object
properties:
label:
type: string
example: is in protein
pdb-uniprot:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is 3D structure of
reverse:
type: object
properties:
label:
type: string
example: has 3D structure
pubchem_compound-chebi:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
pubchem_compound-chembl_compound:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
pubchem_compound-drugbank:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
pubchem_compound-glytoucan:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
pubchem_compound-inchi_key:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is represented as
reverse:
type: object
properties:
label:
type: string
example: represents
reactome_pathway-go:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has GO biological process
reverse:
type: object
properties:
label:
type: string
example: is GO biological process of
reactome_pathway-reactome_reaction:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has participant reaction
reverse:
type: object
properties:
label:
type: string
example: participates in pathway
reactome_reaction-chebi:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has participant molecule
reverse:
type: object
properties:
label:
type: string
example: participates in pathway
reactome_reaction-go:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has GO biological process
reverse:
type: object
properties:
label:
type: string
example: is GO biological process of
reactome_reaction-uniprot:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has participant molecule
reverse:
type: object
properties:
label:
type: string
example: participates in pathway
refseq_protein-uniprot:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
refseq_rna-dbsnp:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has variant
reverse:
type: object
properties:
label:
type: string
example: is located in
refseq_rna-hgnc:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is transcribed from
reverse:
type: object
properties:
label:
type: string
example: is transcribed to
refseq_rna-ncbigene:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is transcribed from
reverse:
type: object
properties:
label:
type: string
example: is transcribed to
refseq_rna-omim_gene:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is transcribed from
reverse:
type: object
properties:
label:
type: string
example: is transcribed to
refseq_rna-pubmed:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has reference
reverse:
type: object
properties:
label:
type: string
example: is reference of
refseq_rna-refseq_protein:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is translated to
reverse:
type: object
properties:
label:
type: string
example: is tranlated from
refseq_rna-taxonomy:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is gene of organism
reverse:
type: object
properties:
label:
type: string
example: has gene
rhea-chebi:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has participant molecule
reverse:
type: object
properties:
label:
type: string
example: participates in pathway
rhea-ec:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
rhea-reactome_reaction:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is nearly equivalent to
reverse:
type: object
properties:
label:
type: string
example: is nearly equivalent to
sra_accession-bioproject:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: includes project
reverse:
type: object
properties:
label:
type: string
example: belongs to submission
sra_accession-biosample:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: includes sample
reverse:
type: object
properties:
label:
type: string
example: belongs to submission
sra_accession-sra_analysis:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: includes analysis
reverse:
type: object
properties:
label:
type: string
example: belongs to submission
sra_accession-sra_experiment:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: includes experiment
reverse:
type: object
properties:
label:
type: string
example: belongs to submission
sra_accession-sra_project:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: includes project
reverse:
type: object
properties:
label:
type: string
example: belongs to submission
sra_accession-sra_run:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: includes sequence run
reverse:
type: object
properties:
label:
type: string
example: belongs to submission
sra_accession-sra_sample:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: includes sample
reverse:
type: object
properties:
label:
type: string
example: belongs to submission
sra_experiment-bioproject:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: belongs to project
reverse:
type: object
properties:
label:
type: string
example: performs experiment
sra_experiment-biosample:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: captures sample
reverse:
type: object
properties:
label:
type: string
example: is captured to perform experiment
sra_experiment-sra_project:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: belongs to project
reverse:
type: object
properties:
label:
type: string
example: performs experiment
sra_experiment-sra_sample:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: captures sample
reverse:
type: object
properties:
label:
type: string
example: is captured to perform experiment
sra_project-bioproject:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is equivalent to
reverse:
type: object
properties:
label:
type: string
example: is equivalent to
sra_run-bioproject:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: belongs to project
reverse:
type: object
properties:
label:
type: string
example: produces sequence run
sra_run-biosample:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is produced from sample
reverse:
type: object
properties:
label:
type: string
example: is captured to produce sequence run
sra_run-sra_experiment:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is produced in experiment
reverse:
type: object
properties:
label:
type: string
example: produces sequence run
sra_run-sra_project:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: belongs to project
reverse:
type: object
properties:
label:
type: string
example: produces sequence run
sra_run-sra_sample:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is produced from sample
reverse:
type: object
properties:
label:
type: string
example: is captured to produce sequence run
sra_sample-biosample:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is equivalent to
reverse:
type: object
properties:
label:
type: string
example: is equivalent to
togovar-clinvar:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has clinical significance
reverse:
type: object
properties:
label:
type: string
example: is clinical significance of
togovar-dbsnp:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has corresponding variant
reverse:
type: object
properties:
label:
type: string
example: has corresponding variant
togovar-ensembl_gene:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is located in
reverse:
type: object
properties:
label:
type: string
example: has variant
togovar-ensembl_transcript:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is located in
reverse:
type: object
properties:
label:
type: string
example: has variant
togovar-hgnc:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is located in
reverse:
type: object
properties:
label:
type: string
example: has variant
togovar-ncbigene:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is located in
reverse:
type: object
properties:
label:
type: string
example: has variant
togovar-pubmed:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has reference
reverse:
type: object
properties:
label:
type: string
example: is reference of
togovar-refseq_rna:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is located in
reverse:
type: object
properties:
label:
type: string
example: has variant
uniprot-chembl_target:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is equivalent to
reverse:
type: object
properties:
label:
type: string
example: is equivalent to
uniprot-dbsnp:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has variant
reverse:
type: object
properties:
label:
type: string
example: is located in
uniprot-ec:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has EC number
reverse:
type: object
properties:
label:
type: string
example: is EC number of
uniprot-ensembl_gene:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is product of gene
reverse:
type: object
properties:
label:
type: string
example: has gene product
uniprot-ensembl_protein:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is equivalent to
reverse:
type: object
properties:
label:
type: string
example: is equivalent to
uniprot-ensembl_transcript:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is tranlated from
reverse:
type: object
properties:
label:
type: string
example: is translated to
uniprot-go:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has GO annotation
reverse:
type: object
properties:
label:
type: string
example: is GO annotation of
uniprot-hgnc:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is product of gene
reverse:
type: object
properties:
label:
type: string
example: has gene product
uniprot-insdc:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is product of gene
reverse:
type: object
properties:
label:
type: string
example: has gene product
uniprot-intact:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: participates in pathway
reverse:
type: object
properties:
label:
type: string
example: has participant molecule
uniprot-ncbigene:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is product of gene
reverse:
type: object
properties:
label:
type: string
example: has gene product
uniprot-oma_group:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is member of orthologous group
reverse:
type: object
properties:
label:
type: string
example: has orthologous group member
uniprot-omim_gene:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is product of gene
reverse:
type: object
properties:
label:
type: string
example: has gene product
uniprot-omim_phenotype:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has related disease
reverse:
type: object
properties:
label:
type: string
example: is related with
uniprot-orphanet:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has related disease
reverse:
type: object
properties:
label:
type: string
example: is related with
uniprot-pdb:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has 3D structure
reverse:
type: object
properties:
label:
type: string
example: is 3D structure of
uniprot-pfam:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has protein domain
reverse:
type: object
properties:
label:
type: string
example: is in protein
uniprot-reactome_pathway:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: participates in pathway
reverse:
type: object
properties:
label:
type: string
example: has participant molecule
uniprot-refseq_protein:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is equivalent to
reverse:
type: object
properties:
label:
type: string
example: is equivalent to
uniprot-uniprot_mnemonic:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has synonym
reverse:
type: object
properties:
label:
type: string
example: is synonym of
wikipathways-chebi:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has participant molecule
reverse:
type: object
properties:
label:
type: string
example: participates in pathway
wikipathways-doid:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has related disease
reverse:
type: object
properties:
label:
type: string
example: is related with
wikipathways-uniprot:
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: has participant molecule
reverse:
type: object
properties:
label:
type: string
example: participates in pathway
400:
description: Bad request
/config/relation/{source}-{target}:
get:
tags:
- "config"
summary: Get selected database relation
operationId: getRelation
parameters:
- name: source
in: path
type: string
description: A key from https://github.com/dbcls/togoid-config/blob/main/config/dataset.yaml
required: true
- name: target
in: path
type: string
description: A key from https://github.com/dbcls/togoid-config/blob/main/config/dataset.yaml
required: true
responses:
200:
description: "Successful operation"
schema:
type: "object"
properties:
link:
type: object
properties:
forward:
type: object
properties:
label:
type: string
example: is attached to
reverse:
type: object
properties:
label:
type: string
example: is modified with
400:
description: Bad request
/config/descriptions:
get:
tags:
- "config"
summary: Get database description
operationId: getDescription
responses:
200:
description: "Successful operation"
schema:
type: "object"
properties:
bioproject:
properties:
description_en:
type: string
example: BioProject is a database which collects the results of research projects under the umbrella of the project or initiative. The database consists of tables of projects, which users can search or browse to find all data outputs related to that project. Users can submit projects or download data via FTP.
description_ja:
type: string
example: 特定の組織やコンソーシアムにより立ち上げられたゲノムプロジェクトをはじめとする生命科学分野の各種プロジェクトを単位とし、そこから産生されたデータセットをまとめたデータベースです。産生された配列データに関しては完全決定配列(ドラフト、進行中を含む)、アセンブリ、アノテーション、マッピングなどの進捗状況が含まれています。
name:
type: string
example: BioProject (Formerly Genome Project)
organization_en:
type: string
example: National Center for Biotechnology Information
organization_ja:
type: string
example: National Center for Biotechnology Information
biosample:
type: object
ccds:
properties:
description_en:
type: string
example: This database seeks to identify a core set of human and mouse protein coding regions of high quality that are consistently annotated.
description_ja:
type: string
example: 高品質で確実にアノテーション付けされたヒトとマウスのタンパク質コード領域のコアセットを集約し、提供しているデータベースです。
name:
type: string
example: CCDS
organization_en:
type: string
example: National Center for Biotechnology Information
organization_ja:
type: string
example: National Center for Biotechnology Information
chebi:
properties:
description_en:
type: string
example: |-
ChEBI is a collection of data on entities of biological interest.
This database concentrates on assembling data on smaller chemical compounds, such as atoms, molecules, ions, radicals etc. These should be produced in nature or be synthetic molecules affecting biological processes in living organisms.
ChEBI does not generally include molecules directly encoded by the genome.
The database contains 31,651 entries with annotations.
A keyword search option is available.
In addition to this an advanced search option, which includes a structure drawing tool, is provided.
The ChEBI database can be searched individually or in combination with other databases.
description_ja:
type: string
example: |-
生命プロセスに介在する小分子化合物の辞典です。ゲノムに直接コード化されている分子(例:核酸、タンパク、ペプチド)はこのデータベースの対象外です。登録されているデータは、多数の情報源のデータを組み合わせ、冗長性を除いています。主な情報源はIntEnz(EBI)、KEGG COMPOUND、PDBeChem(EBI)、ChEMBL(EBI)です。 ChEBIオントロジー(化合物オントロジー)による分類情報と階層表示が特徴です。
全てのエントリーにはデータの信頼性を示す★印がついています; 3つ星:ChEBIチームが手作業で注釈付けを行ったもの。2つ星:ChEMBLチームまたはデータ提供者が手作業で注釈付けを行ったもの。1つ星:情報源から自動的に取得した仮エントリーで、手作業での注釈付けが行われていないもの。
name:
type: string
example: ChEBI
organization_en:
type: string
example: European Bioinformatics Institute
organization_ja:
type: string
example: European Bioinformatics Institute
chembl_compound:
properties:
description_en:
type: string
example: ChEMBL is a database for bioactive molecules. It collects information of small molecules, such as calculated properties (e.g. logP, Molecular Weight, Lipinski Parameters, etc.) and abstracted bioactivities (e.g. binding constants, pharmacology and ADMET data), and the target information. Metadata of assays for small molecule activities or assays for binding activities between small molecules and its targets are also provided.
description_ja:
type: string
example: ChEMBLは創薬を目的とした生理活性をもつ化合物や小分子のデータベースです。化合物、核酸などの小分子と、そのターゲットやアッセイ情報を紐付けて収載しています。化合物や小分子の名称、分子式、分子量、標準SMILES、標準InChIなどの情報に加え、結合定数、ADMEデータなど生理活性に関する情報や、薬としての開発段階の情報などが付与されています。化合物を名称や構造で検索したり、ターゲットをタンパク質の名称で検索することができます。
name:
type: string
example: ChEMBL
organization_en:
type: string
example: EMBL-EBI
organization_ja:
type: string
example: EMBL-EBI
chembl_target:
properties:
description_en:
type: string
example: ChEMBL is a database for bioactive molecules. It collects information of small molecules, such as calculated properties (e.g. logP, Molecular Weight, Lipinski Parameters, etc.) and abstracted bioactivities (e.g. binding constants, pharmacology and ADMET data), and the target information. Metadata of assays for small molecule activities or assays for binding activities between small molecules and its targets are also provided.
description_ja:
type: string
example: ChEMBLは創薬を目的とした生理活性をもつ化合物や小分子のデータベースです。化合物、核酸などの小分子と、そのターゲットやアッセイ情報を紐付けて収載しています。化合物や小分子の名称、分子式、分子量、標準SMILES、標準InChIなどの情報に加え、結合定数、ADMEデータなど生理活性に関する情報や、薬としての開発段階の情報などが付与されています。化合物を名称や構造で検索したり、ターゲットをタンパク質の名称で検索することができます。
name:
type: string
example: ChEMBL
organization_en:
type: string
example: EMBL-EBI
organization_ja:
type: string
example: EMBL-EBI
civic_gene:
properties:
description_en:
type: string
example: CIViC is a knowledgebase for Clinical Interpretation of Variants in Cancer. It has collected knowledge of the therapeutic, prognostic, diagnostic and predisposing relevance of inherited and somatic variants in cancer based on expert-crowdsourcing.
description_ja:
type: string
example: CIViCは癌におけるバリアントの臨床的解釈のための知識ベースです。遺伝性および体細胞性の全てのタイプの癌におけるバリアント情報と、その治療、予後、診断、素因への関連性を、専門家によるクラウドソーシングの形式で収集しています。バリアント、遺伝子、疾患、薬、evidence情報が整理されています。
name:
type: string
example: CIVIC
organization_en:
type: string
example: The McDonnell Genome Institute, Washington University School of Medicine
organization_ja:
type: string
example: The McDonnell Genome Institute, Washington University School of Medicine
clinvar:
properties:
description_en:
type: string
example: ClinVar is a freely available archive describing relationships between medically important variants and phenotypes. Submissions report human variation, interpretations of the relationship of that variation to human health, and the evidence supporting each interpretation. ClinVar is tightly coupled with dbSNP and dbVar, which maintain information about locations of variations on human assemblies, and also based on the phenotypic descriptions maintained in MedGen (http://www.ncbi.nlm.nih.gov/medgen). Each record contains the submitter, the variation and the phenotype. Furthermore, to facilitate evaluation of the medical importance of each variant, ClinVar aggregates submissions with the same variation/phenotype combination, adds value from other NCBI databases, and reports if there are conflicting clinical interpretations. Data in ClinVar are available in multiple formats, including html, download as XML, VCF or tab-delimited subsets.
description_ja:
type: string
example: ヒトゲノムの多様性と関連する疾患についての情報を収集し、自由に利用できるアーカイブとして提供しているデータベースです。多型の位置、遺伝子名、疾患との関わりなどを収録しています。遺伝子情報はNCBIのdbSNPおよびdbVarと、表現型に関してはMedGenとリンクしています。また、NIH Genetic Testing Registry (GTR)、OMIM、PubMedからも情報を収集しています。各データはhtml形式での閲覧の他、XMLやタブ区切り形式、一部データはVCFファイルでダウンロードできます。
name:
type: string
example: ClinVar
organization_en:
type: string
example: National Center for Biotechnology Information
organization_ja:
type: string
example: National Center for Biotechnology Information
dbsnp:
properties:
description_en:
type: string
example: dbSNP collects information on polymorphisms based on single and small-scale multi-base substitutions, including insertions and deletions, microsatelites, and non-polymorphic variants. Differences in the frequency of polymorphisms in a population can be visually compared for each SNP.
description_ja:
type: string
example: 1~数塩基の置換、挿入/欠失、反復等の多型情報からなるデータベースです。各SNPについて、集団間での多型頻度の違いを視覚的に比較することもできます。
name:
type: string
example: dbSNP
organization_en:
type: string
example: National Center for Biotechnology Information
organization_ja:
type: string
example: National Center for Biotechnology Information
dgidb:
properties:
description_en:
type: string
example: DGIdb is a database about drug-gene interactions and the druggable genome. It collects and integrates drug-gene interactions and gene druggability information from papers, databases and web resources, such as DrugBank, PharmGKB, ChEMBL, Drug Target Commons, TTD, and others, using a combination of expert curation and text-mining. It consists of gene records for gene details, drug records for drug details and Interaction records for interaction of the genes and drugs. Users can enter a list of genes to retrieve all known or potentially druggable genes in that list. Results can be filtered by source, interaction type, or gene category.
description_ja:
type: string
example: DGIdbは薬物と遺伝子の相互作用および創薬可能なゲノム資源に関するデータベースです。 DrugBank、PharmGKB、Chembl、Drug Target Commons、TTDなど、様々な論文、データベース、その他のWebリソースから、薬物と遺伝子の相互作用および遺伝子の創薬への適用可能性情報を専門家によるキュレーションとテキストマイニングにより整理・統合して提供しています。 薬に関するレコード、遺伝子に関するレコード、相互作用に関するレコードに分かれて整理されており、相互に参照できます。すべてのデータは、無料でダウンロードするか(*ダウンロードページに条件が記載されている場合を除く)、APIを介してアクセスできます。
name:
type: string
example: DGiDB
organization_en:
type: string
example: McDonnell Genome Institute, Washington University School of Medicine
organization_ja:
type: string
example: McDonnell Genome Institute, Washington University School of Medicine
doid:
properties:
description_en:
type: string
example: This site provides a Disease Ontology, which is a standardized ontology organized by human disease terms and related medical concepts. The DO terms are associated with MeSH, ICD, NCI's thesaurus, SNOMED and OMIM to integrate disease and medical vocabularies.
description_ja:
type: string
example: ヒトの疾患に関する用語や概念について整理したDisease Ontologyを提供するサイトです。MeSH、ICD、NCI’s thesaurus、SNOMEDやOMIMへリンク付けられています。キーワードで語彙を検索することができます。
name:
type: string
example: DO
organization_en:
type: string
example: Institute of Genome Sciences, University of Maryland School of Medicine
organization_ja:
type: string
example: Institute of Genome Sciences, University of Maryland School of Medicine
drugbank:
properties:
description_en:
type: string
example: DrugBank is a database of detailed informatics resources on approved and experimental drugs. The database contains informaiton on drug targets as well as the results of experiments resulting in extensive bioinformatics and chemoinformatics data. Users can browse or search by drug or target. Data is available for download.
description_ja:
type: string
example: 薬剤の化学的、薬理的、薬事的データとそのターゲット(配列、構造、パスウエイ)の詳細情報を収集、統合したバイオインフォマティクスおよびケモインフォマティクスのリソースです。薬剤エントリー約4,800件のうち、FDA承認小分子薬剤が1,350以上、FDA承認バイオテク(タンパク/ペプチド)薬剤123件、栄養補助食品71件、実験的薬剤が3,243件以上が含まれています。2,500以上の非冗長タンパク配列がFDA承認薬剤エントリーにリンクしています。各エントリーにつき100以上のデータ項目が存在します。
name:
type: string
example: DrugBank
organization_en:
type: string
example: University of Alberta/Department of Computing Science
organization_ja:
type: string
example: University of Alberta/Department of Computing Science
ec:
type: object
ena:
properties:
description_en:
type: string
example: ENA is a database of data from global nucleotide sequencing projects. The database contains information on projects from raw phases trhough complete functional annotation. Users can search by keyword or DNA sequence. Bulk data is available for download.
description_ja:
type: string
example: 次世代シーケンサーによる配列データのレポジトリサイトです。サンプル、実験情報、機器情報、データとしては配列トレース、配列、クオリティ値を含み、アセンブル、マッピング、機能アノテーションも提供しています。
name:
type: string
example: ENA
organization_en:
type: string
example: European Bioinformatics Institute
organization_ja:
type: string
example: European Bioinformatics Institute
ensembl_gene:
properties:
description_en:
type: string
example: "ENSEMBL is a collection of automatically annotated genome databases for vertebrates and a number of eukaryotes, integrated with all other relevant biological data available.\r\nThe repository covers data on gene annotation, microarray probeset mapping and comparative genomics among many other topics.\r\nInformation may be downloaded by a variety of means: \r\nFor small amounts of data, an export option is suggested.\r\nFor larger amounts of data, an FTP site is provided from where a complete database may be downloaded in one of various formats, from flat files to MySQL dumps."
description_ja:
type: string
example: ゲノム解読された脊椎生物およびその他の主要な真核生物を対象として自動アノテーションを行い、その結果をゲノムビューワやデータベースとして公開しているプロジェクトです。EMBL-EBIとSanger Centreが共同で進めています。
name:
type: string
example: Ensembl
organization_en:
type: string
example: Wellcome Trust Sanger Institute
organization_ja:
type: string
example: Wellcome Trust Sanger Institute
ensembl_protein:
properties:
description_en:
type: string
example: "ENSEMBL is a collection of automatically annotated genome databases for vertebrates and a number of eukaryotes, integrated with all other relevant biological data available.\r\nThe repository covers data on gene annotation, microarray probeset mapping and comparative genomics among many other topics.\r\nInformation may be downloaded by a variety of means: \r\nFor small amounts of data, an export option is suggested.\r\nFor larger amounts of data, an FTP site is provided from where a complete database may be downloaded in one of various formats, from flat files to MySQL dumps."
description_ja:
type: string
example: ゲノム解読された脊椎生物およびその他の主要な真核生物を対象として自動アノテーションを行い、その結果をゲノムビューワやデータベースとして公開しているプロジェクトです。EMBL-EBIとSanger Centreが共同で進めています。
name:
type: string
example: Ensembl
organization_en:
type: string
example: Wellcome Trust Sanger Institute
organization_ja:
type: string
example: Wellcome Trust Sanger Institute
ensembl_transcript:
properties:
description_en:
type: string
example: "ENSEMBL is a collection of automatically annotated genome databases for vertebrates and a number of eukaryotes, integrated with all other relevant biological data available.\r\nThe repository covers data on gene annotation, microarray probeset mapping and comparative genomics among many other topics.\r\nInformation may be downloaded by a variety of means: \r\nFor small amounts of data, an export option is suggested.\r\nFor larger amounts of data, an FTP site is provided from where a complete database may be downloaded in one of various formats, from flat files to MySQL dumps."
description_ja:
type: string
example: ゲノム解読された脊椎生物およびその他の主要な真核生物を対象として自動アノテーションを行い、その結果をゲノムビューワやデータベースとして公開しているプロジェクトです。EMBL-EBIとSanger Centreが共同で進めています。
name:
type: string
example: Ensembl
organization_en:
type: string
example: Wellcome Trust Sanger Institute
organization_ja:
type: string
example: Wellcome Trust Sanger Institute
glytoucan:
properties:
description_en:
type: string
example: GlyTouCan is an international repository of glycan structures. This database contains uncurated glycan structures ranging in resolution from monosaccharide composition to fully defined structures, as long as there are no inconsistencies in the structure. The database allows users to search by text, graphic input or motif, and browse using motif-list or glycan-list.
description_ja:
type: string
example: 糖鎖構造データを収録した国際糖鎖構造リポジトリです。単糖類組成からグリコシド結合形状などの明確な構造まで、構造に不一致がない限り世界的にユニークなアクセッション番号を付けて登録することができます。キーワード、モチーフ、糖鎖構造画像からの検索、モチーフや糖鎖のリストからのブラウズが可能です。
name:
type: string
example: GlyTouCan
organization_en:
type: string
example: GlyTouCan Project Team
organization_ja:
type: string
example: GlyTouCan Project Team
go:
properties:
description_en:
type: string
example: GO is a database which provides a controlled vocabulary of terms for describing gene product characteristics and gene product annotation data. It contains data of terms, definitions and ontology structure. The most recent version of the ontology and the annotation files contributed by members of the GO Consortium are available for download. The GO provides the AmiGO browser and search engine which are web browser-based access to the GO database.
description_ja:
type: string
example: |-
遺伝子オントロジー(Gene Ontology;GO)とは、生物学的概念を記述するための標準となる語彙を策定しようとするプロジェクトです。GOで定義された用語はGO Termと呼ばれ、Cellular component、Biological process、Molecular functionという3つのカテゴリーに分類されています。GOのデータは、非循環有向グラフ (Directed Acyclic Graph: DAG) と呼ばれるデータ構造を用いて計算機上で記述することができます。
このサイトでは、GO Termや関連ツールの配布を行っています。
name:
type: string
example: GO
organization_en:
type: string
example: The GO Consortium
organization_ja:
type: string
example: The GO Consortium
hgnc:
type: object
hgnc_symbol:
type: object
hmdb:
properties:
description_en:
type: string
example: HUMDB is a database of human metabolites. The database contains information on thousands of metabolites produced by and found in the human body as a result of metabolic processes. genes and proteins related to the metabolites are also affiliated with records, where appropriate. Data on metabolites and the associated genes and proteins are available for download.
description_ja:
type: string
example: ヒト体内における低分子代謝物の詳細情報を収集したデータベースです。メタボロミクスや臨床化学、バイオマーカー探索、教育分野で活用されることを目的に構築しており、化学データ、臨床データ、分子生物学/化学データを含んでいます。現在、7,900代謝物が登録されており、7,200のタンパク質(DNA)配列のリンク情報があります。
name:
type: string
example: HMDB
organization_en:
type: string
example: University of Alberta
organization_ja:
type: string
example: University of Alberta
homologene:
properties:
description_en:
type: string
example: In Homologenes, users can find automatically constructed homologous gene sets from the full-length genome sequences of a wide range of eukaryotic species, as well as mRNA and protein sequences.
description_ja:
type: string
example: 全ゲノム配列が決定された20種類の真核生物の間で自動的検出したホモログ遺伝子のセット、およびmRNAやタンパク質の配列データを提供しています。他の生物種のUniGene配列でホモログの可能性があるものも表示されます。
name:
type: string
example: HomoloGene
organization_en:
type: string
example: National Center for Biotechnology Information
organization_ja:
type: string
example: National Center for Biotechnology Information
hp:
properties:
description_en:
type: string
example: The Human Phenotype Ontology (HPO) provides a standardized vocabulary of phenotype specialized in human disease. The medical literatures, Orphanet, DECIPHER, and OMIM are used for developing the HPO.
description_ja:
type: string
example: The Human Phenotype Ontology (HPO) はヒトの疾患に関連する形質の標準化された語彙を提供しています。医学論文、Orphanet、DECIPHER,やOMIMを基に開発されており、疾患と関連する形質の語彙や、疾患に関連する遺伝子情報が収載されています。疾患名、形質、遺伝子名で検索することができます。
name:
type: string
example: HPO
organization_en:
type: string
example: The Jackson Laboratory
organization_ja:
type: string
example: The Jackson Laboratory
human_protein_atlas:
properties:
description_en:
type: string
example: Human Protein Atlas is a database of protein expression and localization. The database contains information on where proteins localize within cells and lists antibodies for the detection of human proteins. Information on expression in cancer lines as well as RNA transcript expression is also represented. Elements can be searched by several positional characteristics.
description_ja:
type: string
example: |-
様々な種類のヒトの器官、組織、細胞におけるタンパク質の発現および局在に関するデータベースです。蛍光抗体イメージング、質量分析に基づくプロテオミクス、網羅的な遺伝子発現解析によるトランスクリプトミクスおよびシステム生物学の手法により得られた情報を遺伝子ごとに記載しています。各レコードは3つのアトラスで構成されています。
「組織アトラス」:ヒトの主要組織や器官におけるRNA発現量、タンパク質発現量
「細胞アトラス」:RNA発現量や発現画像、GFP発現画像など細胞内での局在
「疾病アトラス」:生存がん患者の組織における量的発現解析(RNA-seq)や空間的発現解析(マイクロアレイ)によるタンパク質発現レベル
また、抗体の情報、細胞内器官の説明、各組織における腫瘍の説明や生存率の情報なども収録しています。
遺伝子名、抗体名、タンパク質の分類によるデータの絞り込みが可能です。
name:
type: string
example: Human Protein Atlas
organization_en:
type: string
example: Uppsala University
organization_ja:
type: string
example: Uppsala University
inchi_key:
type: object
insdc:
properties:
description_en:
type: string
example: It is a portal site for the INSDC(International Nucleotide Sequence Database Collaboration), which is an initiative operated between DDBJ, EMBL-EBI and NCBI. Each organization operates DNA databases in close coordination and cooperation with each other to achieve common accession numbers, and standardize data format (INSD-XML). The databases are called the International Nucleotide Sequence Databases (INSD).
description_ja:
type: string
example: 本サイトは、3大DNAデータベースであるDDBJ、ENA(European Nucleotide Archive)、 NCBIの協力で運営されるINSDC(International Nucleotide Sequence Database Collaboration)のポータルサイトです。INSDCは連携して塩基配列のアクセションIDの共通化やデータ形式の統一(INSD-XML)などに取り組みながら、個々の拠点におけるWebサービスの開発が行われています。INSDCが連携して構築・運営しているデータベースは国際塩基配列データベース (International Nucleotide Sequence Databases, INSD) と呼ばれます。
name:
type: string
example: INSDC
organization_en:
type: string
example: European Bioinformatics Institute (EMBL-EBI)
organization_ja:
type: string
example: European Bioinformatics Institute (EMBL-EBI)
intact:
properties:
description_en:
type: string
example: IntAct is a database of molecular interactions. The database contains information on more than 400,000 interactions gathered from primary literature. Users can search by gene, protein, or publication, among others, and the database includes manually annotated data from several other interaction databases. Software and bulk data, updoated weekly, are also available for download.
description_ja:
type: string
example: IntActはオープンソースの分子間相互作用のデータベースとツールキットで構成されています。データは文献から取得したり、専門家によって蓄積されたデータから構成されています。
name:
type: string
example: IntAct
organization_en:
type: string
example: European Bioinformatics Institute
organization_ja:
type: string
example: European Bioinformatics Institute
interpro:
properties:
description_en:
type: string
example: |-
InterPro is a database that analyses proteins functionally and classifies them into families as well as predicts their domain and sites in the genome.
This repository harvests its content from a large number of related databases and consolidates its findings into a single searchable resource avoiding the occurrence of redundant entries.
InterPro aims to update their content every 8 weeks.
A keyword search is available and an option is provided where a protein sequence can be entered for analysis.
description_ja:
type: string
example: EBI によるタンパク質のファミリー分類、ドメイン、機能サイトに関する記述を収集した統合データベースです。UniProtやPROSITE、PANTHER、ProDom、SMARTなどタンパク質の特性を収録している複数のデータベースを集結し、様々なレベルでのタンパク質の特徴を提供しています。InterProScanを用いて、ユーザが入力した配列から機能ドメインや構造ドメインを検索することができます。
name:
type: string
example: InterPro
organization_en:
type: string
example: European Bioinformatics Institute
organization_ja:
type: string
example: European Bioinformatics Institute
kegg_compound:
properties:
description_en:
type: string
example: KEGG COMPOUND is a database of biologically relevant compounds, including chemical structures and associated information for compounds in the KEGG database such as small molecules, biopolymers, and other related substances. The site also has a collection of links to other relevant KEGG resources such as GLYCAN.
description_ja:
type: string
example: KEGG COMPOUNDは、小分子、生体高分子、および生体関連化学物質のデータベースです。 各エントリーはC番号とよばれるアクセッション番号で識別され、化学構造や関連する生体反応、パスウエイ、他のデータベースとのリンク情報が含まれています。
name:
type: string
example: KEGG COMPOUND
organization_en:
type: string
example: Kyoto University Institute for Chemical Research Bioinformatics Center
organization_ja:
type: string
example: 京都大学 化学研究所 附属バイオインフォマティクスセンター
kegg_disease:
properties:
description_en:
type: string
example: KEGG DISEASE is a database of human diseases with information on perturbed molecular networks. Each disease entry contains a list of known disease genes, environmental factors (carcinogens, pathogens, etc), diagnostic markers and therapeutic drugs with reference information. This database provides maps of molecular networks associated with diseases through links to the KEGG PATHWAY database. Users can search human diseases by names, description, categories, pathways, and known causative genes.
description_ja:
type: string
example: KEGG DISEASEは、遺伝要因が既知の疾患(単一遺伝子疾患及び多因子性疾患)と病原体ゲノムが既知の感染症疾患に関する情報を、計算処理が可能な形に集約したデータベースです。各疾患エントリは H番号とよばれるアクセッション番号で識別され、関連するパスウエイ、病因遺伝子のリスト、ならびに環境要因、診断マーカー、治療薬などの分子のリストで表現されています。
name:
type: string
example: KEGG DISEASE
organization_en:
type: string
example: Kyoto University Institute for Chemical Research Bioinformatics Center
organization_ja:
type: string
example: 京都大学 化学研究所 附属バイオインフォマティクスセンター
kegg_drug:
properties:
description_en:
type: string
example: KEGG DRUG is a comprehensive database of drug information about all marketed drugs in Japan, as well as many prescription drugs in USA and Europe. KEGG DRUG is based on chemical structure or component, and each entry contains information about drug targets (pathways), metabolizing enzymes and other interacting molecules. This database also includes crude drugs and TCM (Tradictional Chinese Medicine). Users can check for drug-drug interaction, view structure maps representing the history of drug development and search drugs by generic names, trade names, and components.
description_ja:
type: string
example: KEGG DRUG は、日本、米国、欧州の医薬品情報を、化学構造と成分の観点から一元的に集約・管理したデータベースです。とくに日本の医薬品は医療用(処方薬)だけでなく一般用(大衆薬、OTC薬)もすべて網羅し、個々の製品情報(添付文書情報)へのリンクがつけられています。また化学薬品だけでなく、生薬・漢方方剤もデータベース化されています。
name:
type: string
example: KEGG DRUG
organization_en:
type: string
example: Kyoto University Institute for Chemical Research Bioinformatics Center
organization_ja:
type: string
example: 京都大学 化学研究所 附属バイオインフォマティクスセンター
kegg_genes:
properties:
description_en:
type: string
example: KEGG geneS is a catalog of gene information for multiple species with species-specified gene information for all species with complete genome sequences. The database references primary sources and provides pathway, ortholog, paralog, and motif searching functions. Results of gene searches include nucleotide and protein information.
description_ja:
type: string
example: |-
KEGG GENESは、全ゲノム配列が決定された生物種について、その遺伝子セットをRefSeq その他の公共データベースから自動生成し、KEGG 独自のアノテーション(KO アノテーション)を行っているデータベースです。
以前、VGENES (http://integbio.jp/dbcatalog/record/nbdc00820) や VGENOME (http://integbio.jp/dbcatalog/record/nbdc00821) に収録されていたウィルスに関する情報も収録されています。
name:
type: string
example: KEGG GENES Database
organization_en:
type: string
example: Kyoto University Institute for Chemical Research Bioinformatics Center
organization_ja:
type: string
example: 京都大学 化学研究所 附属バイオインフォマティクスセンター
kegg_orthology:
properties:
description_en:
type: string
example: KEGG ORTHOLOGY is a database of KEGG pathway ortholog groups, and contains the pathways at the core of the KEGG representation system. Users can search for ortholog groups and explore members across species.
description_ja:
type: string
example: KEGG ORTHOLOGYは、KEGGパスウェイの各ノードまたはBRITE機能階層の最下層ノードに対応したオーソロググループを手作業で定義したものです。ゲノム中の各遺伝子にKO識別子(K番号)を付与することで、KEGGパスウェイやBRITE機能階層へのマッピング(エンリッチメント)が可能となります。KOシステムは、ゲノムの情報からパスウェイ等高次生命システム情報を解読するための架け橋となります。
name:
type: string
example: KEGG ORTHOLOGY (KO) Database
organization_en:
type: string
example: Kyoto University Institute for Chemical Research Bioinformatics Center
organization_ja:
type: string
example: 京都大学 化学研究所 附属バイオインフォマティクスセンター
kegg_pathway:
properties:
description_en:
type: string
example: 'The KEGG PATHWAY database has manually drawn pathway maps that represent molecular interaction and reaction networks for the following: Global Map, Metabolism, genetic Information Processing, Cellular Processes, Organismal Systems, Human Diseases and also structure relationships in Drug Development. By using KEGG PATHWAY mapping, molecular datasets can be mapped for the biological interpretation of higher-level systemic functions.'
description_ja:
type: string
example: 代謝、様々な細胞プロセス、ヒト疾患などに関する分子ネットワークの知識を表現したパスウェイマップを収録しています。マップは文献等から手作業で作成しています。
name:
type: string
example: KEGG PATHWAY Database
organization_en:
type: string
example: Kyoto University Institute for Chemical Research Bioinformatics Center
organization_ja:
type: string
example: 京都大学 化学研究所 附属バイオインフォマティクスセンター
kegg_reaction:
properties:
description_en:
type: string
example: KEGG REACTION is a database of enzymatic reactions. The database contains all KEGG enzyme interactions and KEGG pathway metabolic reactions, including related pathways, and uses IUBMB nomenclature. Users can also find the reaction pathway of individual enzymes.
description_ja:
type: string
example: KEGG REACTIONは、KEGG ENZYMEに格納されているすべての反応と、KEGG PATHWAYの代謝パスウエイの反応を蓄積したデータベースです。 各反応はR番号によって識別され、 反応の構造式や関連する酵素のオーソロググループが収集されており、ゲノム(酵素遺伝子)情報と化学(化合物のペア)情報の統合解析を可能としています。
name:
type: string
example: KEGG REACTION
organization_en:
type: string
example: Kyoto University Institute for Chemical Research Bioinformatics Center
organization_ja:
type: string
example: 京都大学 化学研究所 附属バイオインフォマティクスセンター
lrg:
properties:
description_en:
type: string
example: LRG is a database of stable genomic, transcript and protein reference sequences for reporting clinically relevant sequence variants. NCBI (RefSeq) and EMBL-EBI (Ensembl/GENCODE) are working together to rationalise differences in their gene sets. Records contain information about genomic, transcript and protein sequences, annotations, maps about the genome assembly, etc. This database allows users to search using LRG identifier, HGNC gene name, NCBI and Ensembl accession numbers (gene or transcript), gene synonym or LRG status (public or pending). Genome browsers on Ensembl, NCBI and UCSC are available.
description_ja:
type: string
example: ゲノム、転写産物、タンパク質のリファレンス配列のデータベースです。臨床に関連する変異配列を報告するためのリファレンス配列を、 NCBI(RefSeq)とEMBL-EBI(Ensembl / GENCODE)の協力により情報統合しています。 各レコードには、ゲノム、転写産物、タンパク質の配列、アノテーション、ゲノムアセンブリに関するマップなどが含まれています。LRG番号、HGNC遺伝子名、NCBIやEnsemblのID番号(遺伝子、転写産物)、遺伝子の同義語、公開非公開の別による絞り込みが可能です。また、Ensembl、NCBI、UCSCのゲノムブラウザが利用可能です。
name:
type: string
example: LRG
organization_en:
type: string
example: European Bioinformatics Institute (EMBL-EBI)
organization_ja:
type: string
example: European Bioinformatics Institute (EMBL-EBI)
mbgd_gene:
properties:
description_en:
type: string
example: MBGD is a database with a workbench system for comparative analysis of completely sequenced microbial genomes, mainly for creating orthologous or homologous gene cluster tables. MBGD classifies genomes by the hierarchical clustering method known as UPGMA, using precomputed similarity relationships identified by all-against-all BLAST search. Users can change the set of organisms or cutoff parameters to create their own orthologous groupings. Thus comparative genomics is facilitated from various points of view such as ortholog identification, paralog clustering, motif analysis and gene order comparison.
description_ja:
type: string
example: オーソログ解析に基づいて微生物ゲノムの比較解析を行うためのデータベースです。公開されたゲノム全体を含む標準オーソログテーブルに基づいて、各オーソロググループの系統プロファイルの比較などを行えるほか、動的なオーソログ解析機能によって、利用者自身が持つゲノム配列も含めて、興味のある生物種セットに対象を絞った比較を行うこともできます。
name:
type: string
example: MBGD
organization_en:
type: string
example: National Institute for Basic Biology
organization_ja:
type: string
example: 自然科学研究機構 基礎生物学研究所
mbgd_organism:
properties:
description_en:
type: string
example: MBGD is a database with a workbench system for comparative analysis of completely sequenced microbial genomes, mainly for creating orthologous or homologous gene cluster tables. MBGD classifies genomes by the hierarchical clustering method known as UPGMA, using precomputed similarity relationships identified by all-against-all BLAST search. Users can change the set of organisms or cutoff parameters to create their own orthologous groupings. Thus comparative genomics is facilitated from various points of view such as ortholog identification, paralog clustering, motif analysis and gene order comparison.
description_ja:
type: string
example: オーソログ解析に基づいて微生物ゲノムの比較解析を行うためのデータベースです。公開されたゲノム全体を含む標準オーソログテーブルに基づいて、各オーソロググループの系統プロファイルの比較などを行えるほか、動的なオーソログ解析機能によって、利用者自身が持つゲノム配列も含めて、興味のある生物種セットに対象を絞った比較を行うこともできます。
name:
type: string
example: MBGD
organization_en:
type: string
example: National Institute for Basic Biology
organization_ja:
type: string
example: 自然科学研究機構 基礎生物学研究所
meddra:
properties:
description_en:
type: string
example: MedDRA is a standardized medical terminology for regulatory information of medical products. It is available for use in the registration, documentation and safety monitoring of medical products. It is provided in many languages, which are Chinese, Czech, Dutch, French, German, Hungarian, Italian, Japanese, Korean, Portuguese, Portuguese - Brazilian, Russian, and Spanish in addition to English Master.
description_ja:
type: string
example: MedDRAは人間が使用する医薬品の規制情報を国際的に共有しやすくするために作成された、標準化された国際医療用語集です。英語版の他に、中国語、チェコ語、オランダ語、フランス語、ドイツ語、ハンガリー語、イタリア語、日本語、韓国語、ポルトガル語、ポルトガル語(ブラジル語)、ロシア語、スペイン語で提供されています。英国の医薬品医療製品規制庁(MHRA)に属する用語に基づいて、WHOを含むICHパートナーによって開発されました。サブスクリプションレベルにより有償・無償が異なります。
name:
type: string
example: MedDRA
organization_en:
type: string
example: The International Council for Harmonisation of Technical Requirements for Pharmaceuticals for Human Use (ICH)
organization_ja:
type: string
example: 医薬品規制調和国際会議(ICH)
medgen:
properties:
description_en:
type: string
example: |-
MedGen is a portal database about conditions and phenotypes related to Medical Genetics. It aggregates terms from the NIH Genetic Testing Registry (GTR), UMLS, HPO, Orphanet, ClinVar and other sources into concepts, and assigns a unique identifier and a preferred name and symbol. Each entry includes names, identifiers used by other databases, mode of inheritance, clinical features, and map location of the loci affecting the disorder. This database provides links to such resources as:
Genetic tests registered in the NIH Genetic Testing Registry (GTR), GeneReviews, ClinVar, OMIM, Related genes, Disorders with similar clinical features, Medical and research literature, Practice guidelines, Consumer resources, Ontologies such as HPO and ORDO.
description_ja:
type: string
example: 遺伝医学に関連する症状や表現型に関する情報を集約したポータルデータベースです。NIHのGTR、UMLS、HPO、Orphanet、ClinVar、その他のソースから得られた用語を概念に集約し、一意の識別子(CUI)と優先名を割り当てます。 各エントリーには、名称、他のデータベースで使用される識別子、遺伝様式、臨床的特徴、疾患に影響を与える遺伝子座の地図上の位置が含まれます。
name:
type: string
example: MedGen
organization_en:
type: string
example: National Center for Biotechnology Information (NCBI)
organization_ja:
type: string
example: National Center for Biotechnology Information (NCBI)
mesh:
properties:
description_en:
type: string
example: This is a database of keywords representing the content of articles and biological information. The keywords are structured in layers to allow users to find more detailed information or perform abstract searches.
description_ja:
type: string
example: 文献や、生物学情報の内容を表すキーワードのデータベースです。このキーワードを利用することで関連する生物学情報を得ることができます。キーワードは階層構造をなしており、より詳細に情報をたどることも、より抽象的な検索をすることも可能です。
name:
type: string
example: MeSH
organization_en:
type: string
example: National Center for Biotechnology Information
organization_ja:
type: string
example: National Center for Biotechnology Information
mgi:
properties:
description_en:
type: string
example: 'This is a comprehensive site for mouse research. The site contains detailed information on mouse genes, gene expression data, polymorphisms and mutations, pathways, data on model rats for hereditary cancers, and phenotypes of each mouse model system. They have developed and provided The Human - Mouse: Disease Connection (HMDC) and Mammalian Phenotype Ontology.'
description_ja:
type: string
example: 'マウス研究の総合サイトです。マウス遺伝子に関する情報の他、遺伝子発現データ、多型・変異情報、パスウエイ、遺伝性癌症候群モデルラットに関するデータ、マウス各系統の表現型に関する詳細な情報等を提供しています。Mammalian Phenotype Ontology を作成管理しており、 オントロジーの検索・閲覧もできます(http://www.informatics.jax.org/vocab/mp_ontology) 。Human - Mouse: Disease Connection (HMDC) により、ヒトとマウスの遺伝子や表現型を統合して検索ができます。'
name:
type: string
example: MGI
organization_en:
type: string
example: The Jackson Laboratory
organization_ja:
type: string
example: The Jackson Laboratory
mirbase:
properties:
description_en:
type: string
example: miRBase is a database for published microRNA sequences and annotations, which include mature miRNA sequences (indicated by miR), and hairpin structures predicted by sequences that are precursors for miRNA (indicated by mir). A variety of search methods can be used, including by keyword, genomic position, cluster, expression data, and user-provided sequences. Furthermore, these sequences and annotations can be downloaded.
description_ja:
type: string
example: 公開されているmicroRNAの配列について、配列から予測されるmiRNA前駆体のヘアピン構造(mirで示されます)、成熟miRNAの配列(miRで示されます)、文献情報等が登録されています。様々な検索機能が用意されており、キーワード検索、ゲノム位置による検索、クラスター検索、発現実験による検索、ユーザ自身の配列による検索が行えます。全ての配列とアノテーションはダウンロード可能です。
name:
type: string
example: miRBase
organization_en:
type: string
example: Faculty of Life Sciences(The University of Manchester)
organization_ja:
type: string
example: Faculty of Life Sciences (The University of Manchester)
mondo:
properties:
description_en:
type: string
example: Mondo is an ontology for integrating disease definitions. It collects disease definitions and data models from numerous sources, which include HPO, OMIM, SNOMED CT, ICD, PhenoDB, MedDRA, MedGen, ORDO, DO, GARD, etc. It provides a hierarchical structure which can be used for classification or "rolling up" diseases to higher level groupings.
description_ja:
type: string
example: 疾病の定義を統合して構築したオントロジーです。疾病を定義しデータモデルを収録している多くのデータベース(HPO、OMIM、SNOMED CT、ICD、PhenoDB、MedDRA、MedGen、ORDO、DO、GARDなど)から情報を収集しています。開発当初は半自動で構築されていましたが、広範囲に渡り手動でキュレーションされるようになってきています。疾病の個々の症状、特徴の説明はHPOに準拠しており、疾病は階層構造で表示できます。OWL形式を利用したmondo-with-equivalent、obo、jsonの3つのフォーマットで利用可能です。
name:
type: string
example: MONDO
organization_en:
type: string
example: Monarch Initiative
organization_ja:
type: string
example: Monarch Initiative
nando:
properties:
description_en:
type: string
example: NanbyoData provides informative data related to intractable diseases using Nanbyo Disease Ontology (NANDO). Designated intractable diseases and chronic specific pediatric diseases in Japan are the subject diseases. NANDO, and genes and phenotypes related intractable diseases are downloadable.
description_ja:
type: string
example: NanbyoDataは難病オントロジー(Nanbyo Disease Ontology, NANDO)を介して国内外の難病関連情報を集積したサイトです。日本の難病関連制度である指定難病・小児慢性特定疾病の対象疾患に関して詳細な分類までを網羅し、その概要(日英)とOMIM、Orphanet、MedGen、Monarch Initiative、KEGG Diseaseへのリンク情報を提供しています。NANDOはサイトからダウンロードして利用できる他、語彙一覧 (http://nanbyodata.jp/ontology/nando) と階層構造 (http://bioportal.bioontology.org/ontologies/NANDO/?p=classes&conceptid=root) がweb上から参照できます。
name:
type: string
example: NanbyoData
organization_en:
type: string
example: Research Organization of Information and Systems Database Center for Life Science
organization_ja:
type: string
example: 情報・システム研究機構 ライフサイエンス統合データベースセンター
ncbigene:
properties:
description_en:
type: string
example: The gene database provides information on gene sequence, structure, location, and function for annotated genes from the NCBI database. Users can search by accession ID or keyword, compare and identify sequences using BLAST, or submit references into function (RIFs) based on experimental results. Bulk download and an update mailing list are available.
description_ja:
type: string
example: 生物種別の遺伝子単位でエントリーを構成しており、NCBIの様々なデータベースを統合的に利用して遺伝子情報を掲載しています。染色体上の位置、配列、発現、構造、機能、ホモロジーデータのような遺伝子をベースとした情報を提供しています。
name:
type: string
example: NCBI Gene
organization_en:
type: string
example: National Center for Biotechnology Information
organization_ja:
type: string
example: National Center for Biotechnology Information
ncbiprotein:
properties:
description_en:
type: string
example: NCBI is a portal site for US biological study data. The site contains links to several NIH research resources, most of which are repositories for submission of data from government-funded and/or published projects. Users can search the entire NCBI collection or perform keyword searches of a specific database from the NCBI search bar. Constituent databases contain a wealth of data for download.
description_ja:
type: string
example: NCBI(米国立バイオテクノロジー情報センター)は、NIH(米国立衛生研究所)のNLM(米国立医学図書館)の一部門として1988年に設立されたバイオインフォマティクス研究組織です。1989年にBLAST、1990年に検索システムEntrezを開発しました。現在では、NCBI内の各種データベースに対する検索を統一的なインタフェースで行えるようにしています。
name:
type: string
example: NCBI
organization_en:
type: string
example: National Center for Biotechnology Information
organization_ja:
type: string
example: National Center for Biotechnology Information
oma_group:
type: object
oma_protein:
type: object
omim_gene:
properties:
description_en:
type: string
example: OMIM is a database of human disease and genetic information and the online representation of Mendelian Inheritance in Man, a project initiated in the 1960s. The database summarizes heritable traits and provides information on both the trait and experimentally determined genetic causes. The database is manually curated by experts and can be searched by OMIM ID, gene, disease, or phenotype.
description_ja:
type: string
example: Johns Hopkins大学のVictor A. McKusick 博士が中心となって記述、編集を行っている、ヒトの遺伝子変異と遺伝病のデータベースです。全ての既知のメンデル型遺伝病と12,000以上の遺伝子に関して、テキスト形式の情報やリファレンスが示されます。MEDLINEやEntrezのリンクも含まれます。
name:
type: string
example: OMIM
organization_en:
type: string
example: National Center for Biotechnology Information
organization_ja:
type: string
example: National Center for Biotechnology Information
omim_phenotype:
properties:
description_en:
type: string
example: OMIM is a database of human disease and genetic information and the online representation of Mendelian Inheritance in Man, a project initiated in the 1960s. The database summarizes heritable traits and provides information on both the trait and experimentally determined genetic causes. The database is manually curated by experts and can be searched by OMIM ID, gene, disease, or phenotype.
description_ja:
type: string
example: Johns Hopkins大学のVictor A. McKusick 博士が中心となって記述、編集を行っている、ヒトの遺伝子変異と遺伝病のデータベースです。全ての既知のメンデル型遺伝病と12,000以上の遺伝子に関して、テキスト形式の情報やリファレンスが示されます。MEDLINEやEntrezのリンクも含まれます。
name:
type: string
example: OMIM
organization_en:
type: string
example: National Center for Biotechnology Information
organization_ja:
type: string
example: National Center for Biotechnology Information
orphanet:
properties:
description_en:
type: string
example: Orphanet is a portal site for rare diseases and orphan drugs. It provides inventory of rare diseases and classification, inventory of orphan drugs, clinical trials, etc.
description_ja:
type: string
example: Orphanetは希少疾患患者の診断と治療の向上を図ることを目的とした、希少疾患や希少疾患用医薬品について様々な情報を参照可能にしたデータベースです。疾患や薬に関する一般的な情報をはじめとして、臨床試験情報、関連する論文や、有病率、発症歴、症状、地域情報などを検索可能です。
name:
type: string
example: Orphanet
organization_en:
type: string
example: Orphanet
organization_ja:
type: string
example: フランス国立保健医学研究所
pdb:
properties:
description_en:
type: string
example: This is an international public repository for three-dimensional structures and structure coordinates (conformations) of proteins and nucleic acids, and the central database for biological structural data. Data obtained through X-ray crystallography and NMR experiments are stored in PDB. In addition to three-dimensional information of proteins, users can find amino acid sequences, protein-related information on GO, and other compounds bound to the protein.
description_ja:
type: string
example: |-
タンパク質と核酸の3次元構造の構造座標(立体配座)を蓄積している国際的な公共レポジトリです。
 RCSB PDB (https://integbio.jp/dbcatalog/record/nbdc01865 )
 PDBe (https://integbio.jp/dbcatalog/record/nbdc00613 )
 PDBj (https://integbio.jp/dbcatalog/record/nbdc00157 )
 BMRB (https://integbio.jp/dbcatalog/record/nbdc00380 )
上記4つデータベースの集合体として、X線結晶構造解析やNMRなどで実験的に決定されたタンパク質の立体構造データの他に、アミノ酸配列、GOといったタンパク質に関する情報やタンパク質に結合している化合物の情報を統合し提供しています。検証データ登録のためのツールや登録データのダウンロードが可能なFTPサイトを装備しています。
name:
type: string
example: wwPDB
organization_en:
type: string
example: wwPDB consortium
organization_ja:
type: string
example: wwPDB consortium
pfam:
properties:
description_en:
type: string
example: "Pfam Version 26.0 is a comprehensive database of protein families containing multiple sequence alignments and HMMs.\nThis repository provides data on 13,672 protein families.\nThe site can be searched with a known protein sequence for matching families. \nOptions to search for a Pfam family, clan, sequence or structure are available.\nA keyword search option is also provided."
description_ja:
type: string
example: 現在最もよく整備されたタンパク質ドメインデータベースの一つで、膨大な数のタンパク質ファミリーのコレクションを保持しています。手作業で分類を行った高品質のPfam-Aと、機械的に分類を行ったPfam-Bから構成されています。最大の特徴は、検索システムとしてHMMERというプログラムを使用している点であり、これにより高速で精度の高いモチーフの検索を可能にしています。
name:
type: string
example: Pfam
organization_en:
type: string
example: EMBL-EBI
organization_ja:
type: string
example: EMBL-EBI
pubchem_compound:
properties:
description_en:
type: string
example: PubChem Compound is a database of chemical structrues of validated small molecules. The dataase contains entries for PubChem entities which are grouped by structural identity and similarity. Users can submit compounds and download via FTP.
description_ja:
type: string
example: 化合物名や分子量、CompoundIDなどで化合物の情報を検索することができるサイトです。医薬品名やその効能、LogP値などの物性値も掲載されています。また、類似構造を持つ別の化合物の検索も可能です。PubChem Substanceが一つの化合物に対して異なる情報をもつ複数のエントリをもつ可能性があるのに対し、PubChem CompoundはPubChem Substanceで得られた種々の情報を一つのエントリに集約して提供しています。
name:
type: string
example: PubChem Compound
organization_en:
type: string
example: National Center for Biotechnology Information
organization_ja:
type: string
example: National Center for Biotechnology Information
pubchem_substance:
properties:
description_en:
type: string
example: PubChem Substance is a database of samples of chemical entities which links to the biological activity of those samples in PubChem BioAssay. The database contains structural information on substances with links to further information in cases where the substance has been more fully characterized. It consists of records of chemical entities deposited by various contributors, so a chemical entity may be described different records with different data in this database.
description_ja:
type: string
example: PubChem Substanceは、出版社、研究者、化学ベンダー、製薬会社、および多くの重要なケミカルバイオロジーリソースをもつ研究者によって提供された化学物質とその生物活性に関する情報のオープンアーカイブです。特定の化学物質に関して個々の提供者からの情報が含まれており、1つの化合物に対して提供者が異なる別のレコードとして異なる情報を提供している可能性があります。
name:
type: string
example: PubChem Substance
organization_en:
type: string
example: National Center for Biotechnology Information
organization_ja:
type: string
example: National Center for Biotechnology Information
pubmed:
properties:
description_en:
type: string
example: This database contains bibliographic information from journal articles in the field of life science as well as MEDLINE (title, authors, journal name, abstracts). Links are provided for articles with free access to the full article.
description_ja:
type: string
example: MEDLINEおよび生命科学分野のジャーナル文献の書誌情報(タイトル、著者名、雑誌名、抄録など)を収録したデータベースです。全文をフリーで公開している文献については、提供サイトへのリンクが張られています。
name:
type: string
example: PubMed
organization_en:
type: string
example: National Center for Biotechnology Information
organization_ja:
type: string
example: National Center for Biotechnology Information
reactome_pathway:
properties:
description_en:
type: string
example: REACTOME is a database of human pathways for basic research, genome analysis, pathway modeling, systems biology and education. It contains manually curated and peer-reviewed pathway data which are annotated by expert biologists, in collaboration with Reactome editorial staff and cross-referenced to many bioinformatics databases. This database provides an intuitive website to navigate pathway knowledge and a suite of data analysis tools to support the pathway-based analysis of complex experimental and computational data sets. The curated human pathway data are available to infer orthologous events in 20 non-human species including mouse, rat, chicken, worm, fly, yeast, plant and bacteria. Using species comparison tool, users are able to compare predicted pathways with those of human to find reactions and pathways common to a selected species and human.
description_ja:
type: string
example: ヒトの生体内の主要反応経路や生化学反応を整備したデータベースです。ヒト以外の20生物種のデータも格納しており、ヒトとの比較ができます。ここに収録されている情報は、それぞれの分野の専門家が編集しているため、非常に信頼性の高いデータベースです。代謝パスウェイ、シグナル伝達や膜輸送、感染など様々なパスウェイが扱われており、SBGN (Sytem Biology Graphical Notation)形式で視覚化されています。パスウエイ解析、生物種間比較、発現解析も行えます。
name:
type: string
example: REACTOME
organization_en:
type: string
example: Reactome team
organization_ja:
type: string
example: Reactome Team
reactome_reaction:
properties:
description_en:
type: string
example: REACTOME is a database of human pathways for basic research, genome analysis, pathway modeling, systems biology and education. It contains manually curated and peer-reviewed pathway data which are annotated by expert biologists, in collaboration with Reactome editorial staff and cross-referenced to many bioinformatics databases. This database provides an intuitive website to navigate pathway knowledge and a suite of data analysis tools to support the pathway-based analysis of complex experimental and computational data sets. The curated human pathway data are available to infer orthologous events in 20 non-human species including mouse, rat, chicken, worm, fly, yeast, plant and bacteria. Using species comparison tool, users are able to compare predicted pathways with those of human to find reactions and pathways common to a selected species and human.
description_ja:
type: string
example: ヒトの生体内の主要反応経路や生化学反応を整備したデータベースです。ヒト以外の20生物種のデータも格納しており、ヒトとの比較ができます。ここに収録されている情報は、それぞれの分野の専門家が編集しているため、非常に信頼性の高いデータベースです。代謝パスウェイ、シグナル伝達や膜輸送、感染など様々なパスウェイが扱われており、SBGN (Sytem Biology Graphical Notation)形式で視覚化されています。パスウエイ解析、生物種間比較、発現解析も行えます。
name:
type: string
example: REACTOME
organization_en:
type: string
example: Reactome team
organization_ja:
type: string
example: Reactome Team
refseq_genomic:
properties:
description_en:
type: string
example: RefSeq is a database of standard reference genomic, transcript, and protein sequences. The database contains consensus sequence data for over 20,000 organisms and over 27 million proteins and is designed to provide a common basis for experimental studies that can be searched using accession ID, keyword, or BLAST. Bulk data is available for FTP download.
description_ja:
type: string
example: 異なる生物種由来の冗長性を排除したDNA, RNA, タンパク配列を収録したデータベースです。プラスミド、オルガネラ、ウイルス、古細菌、真正細菌、真核生物のアノテーション付けされた配列が含まれています。生物種ごとに、標準となる配列の包括的データセットを提供することを目的としています。配列の情報源はGenBank由来ですが、それらの中から情報を統合して標準となる配列を提供しています。
name:
type: string
example: RefSeq
organization_en:
type: string
example: National Center for Biotechnology Information
organization_ja:
type: string
example: National Center for Biotechnology Information
refseq_protein:
properties:
description_en:
type: string
example: RefSeq is a database of standard reference genomic, transcript, and protein sequences. The database contains consensus sequence data for over 20,000 organisms and over 27 million proteins and is designed to provide a common basis for experimental studies that can be searched using accession ID, keyword, or BLAST. Bulk data is available for FTP download.
description_ja:
type: string
example: 異なる生物種由来の冗長性を排除したDNA, RNA, タンパク配列を収録したデータベースです。プラスミド、オルガネラ、ウイルス、古細菌、真正細菌、真核生物のアノテーション付けされた配列が含まれています。生物種ごとに、標準となる配列の包括的データセットを提供することを目的としています。配列の情報源はGenBank由来ですが、それらの中から情報を統合して標準となる配列を提供しています。
name:
type: string
example: RefSeq
organization_en:
type: string
example: National Center for Biotechnology Information
organization_ja:
type: string
example: National Center for Biotechnology Information
refseq_rna:
properties:
description_en:
type: string
example: RefSeq is a database of standard reference genomic, transcript, and protein sequences. The database contains consensus sequence data for over 20,000 organisms and over 27 million proteins and is designed to provide a common basis for experimental studies that can be searched using accession ID, keyword, or BLAST. Bulk data is available for FTP download.
description_ja:
type: string
example: 異なる生物種由来の冗長性を排除したDNA, RNA, タンパク配列を収録したデータベースです。プラスミド、オルガネラ、ウイルス、古細菌、真正細菌、真核生物のアノテーション付けされた配列が含まれています。生物種ごとに、標準となる配列の包括的データセットを提供することを目的としています。配列の情報源はGenBank由来ですが、それらの中から情報を統合して標準となる配列を提供しています。
name:
type: string
example: RefSeq
organization_en:
type: string
example: National Center for Biotechnology Information
organization_ja:
type: string
example: National Center for Biotechnology Information
rgd:
properties:
description_en:
type: string
example: This is a comprehensive site for rat genome researches. In addition to information on rat genes, the site contains information on rat strains, data on rat models for disease, and publications.
description_ja:
type: string
example: ラットゲノム研究の総合サイトです。ラット遺伝子に関する情報の他に、ラットの系統に関する情報、病態モデルラットに関するデータ、文献情報等を提供しています。
name:
type: string
example: RGD
organization_en:
type: string
example: Medical College of Wisconsin/Bioinformatics Research Center
organization_ja:
type: string
example: Medical College of Wisconsin/Bioinformatics Research Center
rhea:
type: object
sra_accession:
properties:
description_en:
type: string
example: SRA is a database of raw sequence reads from next-generation sequencing systems. The database contains millions of unannotated raw reads generated from a variety of projects. Data can be submitted to the archive or downloaded via FTP.
description_ja:
type: string
example: 次世代シーケンサーによる配列データのレポジトリサイトです。現在扱っているプラットフォームは454(ロシュ)、Genome Analyzer(イルミナ)、SOLiD(アプライドバイオシステムズ)、Heliscope(ヘリコス)。研究単位でデータの登録、配布を行っています。
name:
type: string
example: SRA
organization_en:
type: string
example: National Center for Biotechnology Information
organization_ja:
type: string
example: National Center for Biotechnology Information
sra_analysis:
properties:
description_en:
type: string
example: SRA is a database of raw sequence reads from next-generation sequencing systems. The database contains millions of unannotated raw reads generated from a variety of projects. Data can be submitted to the archive or downloaded via FTP.
description_ja:
type: string
example: 次世代シーケンサーによる配列データのレポジトリサイトです。現在扱っているプラットフォームは454(ロシュ)、Genome Analyzer(イルミナ)、SOLiD(アプライドバイオシステムズ)、Heliscope(ヘリコス)。研究単位でデータの登録、配布を行っています。
name:
type: string
example: SRA
organization_en:
type: string
example: National Center for Biotechnology Information
organization_ja:
type: string
example: National Center for Biotechnology Information
sra_experiment:
properties:
description_en:
type: string
example: SRA is a database of raw sequence reads from next-generation sequencing systems. The database contains millions of unannotated raw reads generated from a variety of projects. Data can be submitted to the archive or downloaded via FTP.
description_ja:
type: string
example: 次世代シーケンサーによる配列データのレポジトリサイトです。現在扱っているプラットフォームは454(ロシュ)、Genome Analyzer(イルミナ)、SOLiD(アプライドバイオシステムズ)、Heliscope(ヘリコス)。研究単位でデータの登録、配布を行っています。
name:
type: string
example: SRA
organization_en:
type: string
example: National Center for Biotechnology Information
organization_ja:
type: string
example: National Center for Biotechnology Information
sra_project:
properties:
description_en:
type: string
example: SRA is a database of raw sequence reads from next-generation sequencing systems. The database contains millions of unannotated raw reads generated from a variety of projects. Data can be submitted to the archive or downloaded via FTP.
description_ja:
type: string
example: 次世代シーケンサーによる配列データのレポジトリサイトです。現在扱っているプラットフォームは454(ロシュ)、Genome Analyzer(イルミナ)、SOLiD(アプライドバイオシステムズ)、Heliscope(ヘリコス)。研究単位でデータの登録、配布を行っています。
name:
type: string
example: SRA
organization_en:
type: string
example: National Center for Biotechnology Information
organization_ja:
type: string
example: National Center for Biotechnology Information
sra_run:
properties:
description_en:
type: string
example: SRA is a database of raw sequence reads from next-generation sequencing systems. The database contains millions of unannotated raw reads generated from a variety of projects. Data can be submitted to the archive or downloaded via FTP.
description_ja:
type: string
example: 次世代シーケンサーによる配列データのレポジトリサイトです。現在扱っているプラットフォームは454(ロシュ)、Genome Analyzer(イルミナ)、SOLiD(アプライドバイオシステムズ)、Heliscope(ヘリコス)。研究単位でデータの登録、配布を行っています。
name:
type: string
example: SRA
organization_en:
type: string
example: National Center for Biotechnology Information
organization_ja:
type: string
example: National Center for Biotechnology Information
sra_sample:
properties:
description_en:
type: string
example: SRA is a database of raw sequence reads from next-generation sequencing systems. The database contains millions of unannotated raw reads generated from a variety of projects. Data can be submitted to the archive or downloaded via FTP.
description_ja:
type: string
example: 次世代シーケンサーによる配列データのレポジトリサイトです。現在扱っているプラットフォームは454(ロシュ)、Genome Analyzer(イルミナ)、SOLiD(アプライドバイオシステムズ)、Heliscope(ヘリコス)。研究単位でデータの登録、配布を行っています。
name:
type: string
example: SRA
organization_en:
type: string
example: National Center for Biotechnology Information
organization_ja:
type: string
example: National Center for Biotechnology Information
taxonomy:
properties:
description_en:
type: string
example: Taxonomy is a database of systematic classifications of organisms repesented in public sequencing databases. The database contains phylogenetic relatonships and nomenclature for an estimated 10% of all living species. Tools include a browser, genetic codes, and a common evolutionary tree. Taxonomic classificatinos can be downloaded via FTP.
description_ja:
type: string
example: NCBI Entrezデータベースに少なくとも1件以上登録されている全ての生物種と上位分類名を収集したデータベースです。160,000以上の生物種が登録されています。各エントリーには、学名、英名、階層分類、上位階層、Entrezデータベース群の収録数とリンクが含まれています。このデータベースは、種々のデータベース間で生物名の表記を統一することを目的として構築しており、分類学や系統発生学の権威となるものではありません。採用されている生物名や系統分類は、分類学的、系統発生学的に普及している内容と異なる場合があります。
name:
type: string
example: Taxonomy - NCBI
organization_en:
type: string
example: National Center for Biotechnology Information
organization_ja:
type: string
example: National Center for Biotechnology Information
togovar:
properties:
description_en:
type: string
example: |-
TogoVar (NBDC's integrated database of Japanese genomic variation) is a database that has collected and organized genome sequence differences between individuals (variants) in the Japanese population and disease information associated with them. TogoVar provides variant frequencies in the Japanese population that have been aggregated across research projects. Two available datasets, JGA-NGS and JGA-SNP, are obtained by aggregating individual genomic data that have been registered in the NBDC Human Database / Japanese Genotype-phenotype Archive (JGA). In addition, TogoVar integrates information related to genotypes or phenotypes that has been compiled independently in a variety of different databases and provides information for interpreting variants in a one-stop, easy-to-understand manner.
Users can learn how to use it by a movie: https://togotv.dbcls.jp/en/20181012.html
description_ja:
type: string
example: TogoVar(日本人ゲノム多様性統合データベース)は、日本人ゲノム配列の個人による違い(バリアント)とそれに関係する疾患情報などを収集・整理したデータベースです。TogoVarは、研究プロジェクト横断的に集約した日本人におけるバリアントの頻度情報を提供します。利用可能な2つのデータセットであるJGA-NGSとJGA-SNPはNBDCヒトデータベース/Japanese Genotype-phenotype Archive (JGA)に登録されている個人ごとのゲノムデータを集約して得られた頻度情報です。さらに、多種多様なデータベースに散在して収録されてきた遺伝子型や表現型に関連する情報を整理統合し、バリアントを解釈するための情報をワンストップでわかりやすく提供します。
name:
type: string
example: TogoVar
organization_en:
type: string
example: National Bioscience Database Center
organization_ja:
type: string
example: 国立研究開発法人科学技術振興機構 バイオサイエンスデータベースセンター
uniprot:
properties:
description_en:
type: string
example: "This database contains information on amino acid sequences and their functions. It is composed of four core databases, UniProtKB, UniRef, UniParc, and Proteomes. UniProtKB contains two types of data, which are manually curated high quality SwissProt annotations based on literature information, and automatically annotated TrEMBL. \r\nUniRef provides results of sequence similarity searches. \r\nUniParc integrates information such as ID for other databases per sequence ID.\r\nProteomes provides proteome data of each organism with completely sequenced genomes."
description_ja:
type: string
example: |-
アミノ酸配列とその機能情報を掲載している代表的なデータベースです。「UniProtKB」、「UniRef」、「UniParc」の3種類のデータベースから構成されています。
UniProtKB: 文献情報などを元に手作業で高品質のアノテーションを付けたSwissProtと、機械的にアノテーションを加えたTrEMBLを公開しています。
UniRef: あらかじめ行われた配列相同性検索の結果を提供しています。
UniParc: 配列IDごとに他のデータベースのID等の情報をまとめています。
name:
type: string
example: UniProt
organization_en:
type: string
example: UniProt Consortium
organization_ja:
type: string
example: UniProt Consortium
uniprot_mnemonic:
properties:
description_en:
type: string
example: "This database contains information on amino acid sequences and their functions. It is composed of four core databases, UniProtKB, UniRef, UniParc, and Proteomes. UniProtKB contains two types of data, which are manually curated high quality SwissProt annotations based on literature information, and automatically annotated TrEMBL. \r\nUniRef provides results of sequence similarity searches. \r\nUniParc integrates information such as ID for other databases per sequence ID.\r\nProteomes provides proteome data of each organism with completely sequenced genomes."
description_ja:
type: string
example: |-
アミノ酸配列とその機能情報を掲載している代表的なデータベースです。「UniProtKB」、「UniRef」、「UniParc」の3種類のデータベースから構成されています。
UniProtKB: 文献情報などを元に手作業で高品質のアノテーションを付けたSwissProtと、機械的にアノテーションを加えたTrEMBLを公開しています。
UniRef: あらかじめ行われた配列相同性検索の結果を提供しています。
UniParc: 配列IDごとに他のデータベースのID等の情報をまとめています。
name:
type: string
example: UniProt
organization_en:
type: string
example: UniProt Consortium
organization_ja:
type: string
example: UniProt Consortium
wikipathways:
type: object
400:
description: Bad request
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment