1. Details

Return full configuration details.

1.1. CURL sample

$ curl 'https://minerva-service.lcsb.uni.lu/minerva/api/configuration/' -X GET

1.2. Response Fields

Path Type Description

annotators

Array

list of annotators

bioEntityFields

Array

list of bieEntity fields that are used by annotators

buildDate

timestamp

when minerva platform was built

gitHash

String

git hash used to build minerva platform

version

String

version of the minerva platform

imageFormats

Array

list of available export image formats

miriamTypes

Object

map of miriam types supported by minerva. Types are defined on https://identifiers.org/

modelFormats

Array

list of map formats

modificationStateTypes

Object

map with modification states

options

Array

list of configuration options

overlayTypes

Array

list of overlay types

privilegeTypes

Object

map with privilege type available in the system

reactionTypes

Array

list of reaction types

unitTypes

Array

list of basic unit types

elementTypes

Array

list of element types

annotators[].name

String

annotator name

annotators[].url

String

url address of assoiated database

annotators[].className

String

Java class responsible for annotating process

annotators[].elementClassNames

array<string>

Java classes that identify bioEntity types that can be annotated by the annotator

annotators[].description

String

short description of the annotator

annotators[].parameters

array<object>

list of supported input fields, generated outputs that can be filled by annotator and configuration options

annotators[].parameters[].annotation_type

MiriamType

identifier type. Either this or 'field' is required for INPUT/OUTPUT parameter

annotators[].parameters[].field

String

bioEntity field. Either this or 'annotation_type' is required for INPUT/OUTPUT parameter

annotators[].parameters[].commonName

String

name of the CONFIG parameter

annotators[].parameters[].description

String

description of the parameter

annotators[].parameters[].inputType

String

type of the CONFIG parameter

annotators[].parameters[].name

String

name of the CONFIG parameter

annotators[].parameters[].value

String

default value of the CONFIG parameter

annotators[].parameters[].order

number

order position when listing parameters

annotators[].parameters[].type

String

type of parameter (INPUT/OUTPUT/CONFIG)

bioEntityFields[].commonName

String

human readable name of the field

bioEntityFields[].name

String

unique name of the field

elementTypes[].className

String

Java class that identify type

elementTypes[].name

String

human readable name of the type

elementTypes[].parentClass

String

Java class that identify parent type

imageFormats[].extension

String

file extension

imageFormats[].name

String

human readable name of the format

imageFormats[].handler

String

Java class that is responsible for export

miriamTypes[].commonName

String

human readable name of the identifier type

miriamTypes[].homepage

String

url to database homepage

miriamTypes[].registryIdentifier

String

unique identifier used by identifiers.org to reference this type

miriamTypes[].registryIdentifier

array<string>

list of uris used by this identifier type

modelFormats[].name

String

human readable name of map format

modelFormats[].extension

String

default file extension

modelFormats[].extensions

Array

file extensions supported by parser

modelFormats[].handler

String

Java class that is used for import/export from the map format

modificationStateTypes[].commonName

String

human readable name of modification state type

modificationStateTypes[].abbreviation

String

short name of the type

options[].commonName

String

human readable name of configuration option

options[].group

String

group of options where this configuration option belongs to

options[].isServerSide

boolean

TRUE/FALSE - is the option responsible for server side processing or frontend

options[].type

String

option type

options[].value

String

value of the configuration option

options[].valueType

String

type of the configuration option. Available options: ALLOW_AUTO_REGISTER, BIG_FILE_STORAGE_DIR, COOKIE_POLICY_URL, CORS_DOMAIN, CUSTOM_CSS, DEFAULT_MAP, EMAIL_ADDRESS, EMAIL_IMAP_SERVER, EMAIL_LOGIN, EMAIL_PASSWORD, EMAIL_SMTP_PORT, EMAIL_SMTP_SERVER, EMAIL_SSL_SERVER, LDAP_ADDRESS, LDAP_BASE_DN, LDAP_BIND_DN, LDAP_EMAIL_ATTRIBUTE, LDAP_FILTER, LDAP_FIRST_NAME_ATTRIBUTE, LDAP_LAST_NAME_ATTRIBUTE, LDAP_OBJECT_CLASS, LDAP_PASSWORD, LDAP_PORT, LDAP_SSL, LDAP_UID, LEFT_LOGO_IMG, LEFT_LOGO_LINK, LEFT_LOGO_TEXT, LEGEND_FILE_1, LEGEND_FILE_2, LEGEND_FILE_3, LEGEND_FILE_4, MATOMO_URL, MAX_COLOR_VAL, MINERVANET_AUTH_TOKEN, MINERVANET_URL, MINERVA_ROOT, MIN_COLOR_VAL, NEUTRAL_COLOR_VAL, ORCID_CLIENT_ID, ORCID_CLIENT_SECRET, OVERLAY_OPACITY, REQUEST_ACCOUNT_DEFAULT_CONTENT, REQUEST_ACCOUNT_DEFAULT_TITLE, REQUEST_ACCOUNT_EMAIL, REQUIRE_APPROVAL_FOR_AUTO_REGISTERED_USERS, RIGHT_LOGO_IMG, RIGHT_LOGO_LINK, RIGHT_LOGO_TEXT, SESSION_LENGTH, SIMPLE_COLOR_VAL, TERMS_OF_USE, USER_MANUAL_FILE, X_FRAME_DOMAIN

overlayTypes[].name

String

name of the type

privilegeTypes[].commonName

String

human readable description of the privilege

privilegeTypes[].objectType

String

class of objects to which privilege applies

privilegeTypes[].valueType

String

type of the privilege value (ie. boolean)

reactionTypes[].className

String

Java class that identify type

reactionTypes[].name

String

human readable name of the type

reactionTypes[].parentClass

String

Java class that identify parent type

unitTypes[].name

String

human readable name of the type

unitTypes[].id

String

type identifier

1.3. Sample Response

{
  "options" : [ {
    "idObject" : 15,
    "type" : "DEFAULT_MAP",
    "valueType" : "STRING",
    "commonName" : "Default Project Id",
    "isServerSide" : false,
    "value" : "empty",
    "group" : "Server configuration"
  }, {
    "idObject" : 25,
    "type" : "LEFT_LOGO_IMG",
    "valueType" : "URL",
    "commonName" : "Left logo icon",
    "isServerSide" : false,
    "value" : "resources/images/udl.png",
    "group" : "Legend and logo"
  }, {
    "idObject" : 26,
    "type" : "LEFT_LOGO_LINK",
    "valueType" : "URL",
    "commonName" : "Left logo link (after click)",
    "isServerSide" : false,
    "value" : "http://wwwen.uni.lu/",
    "group" : "Legend and logo"
  }, {
    "idObject" : 27,
    "type" : "LEFT_LOGO_TEXT",
    "valueType" : "STRING",
    "commonName" : "Left logo description",
    "isServerSide" : false,
    "value" : "University of Luxembourg",
    "group" : "Legend and logo"
  }, {
    "idObject" : 28,
    "type" : "RIGHT_LOGO_IMG",
    "valueType" : "URL",
    "commonName" : "Right logo icon",
    "isServerSide" : false,
    "value" : "resources/images/lcsb.png",
    "group" : "Legend and logo"
  }, {
    "idObject" : 29,
    "type" : "RIGHT_LOGO_LINK",
    "valueType" : "URL",
    "commonName" : "Right logo link (after click)",
    "isServerSide" : false,
    "value" : "http://wwwen.uni.lu/lcsb/",
    "group" : "Legend and logo"
  }, {
    "idObject" : 30,
    "type" : "RIGHT_LOGO_TEXT",
    "valueType" : "STRING",
    "commonName" : "Right logo description",
    "isServerSide" : false,
    "value" : "LCSB - Luxembourg Centre for Systems Biomedicine",
    "group" : "Legend and logo"
  }, {
    "idObject" : 9,
    "type" : "REQUEST_ACCOUNT_EMAIL",
    "valueType" : "EMAIL",
    "commonName" : "Email used for requesting an account",
    "isServerSide" : false,
    "value" : "",
    "group" : "Email notification details"
  }, {
    "idObject" : 19,
    "type" : "X_FRAME_DOMAIN",
    "valueType" : "URL",
    "commonName" : "Domain allowed to connect via x-frame technology",
    "isServerSide" : false,
    "value" : "",
    "group" : "Server configuration"
  }, {
    "idObject" : 22,
    "type" : "CORS_DOMAIN",
    "valueType" : "BOOLEAN",
    "commonName" : "Disable CORS (when disabled 'ORIGIN' http header is required)",
    "isServerSide" : false,
    "value" : "false",
    "group" : "Server configuration"
  }, {
    "idObject" : 23,
    "type" : "BIG_FILE_STORAGE_DIR",
    "valueType" : "STRING",
    "commonName" : "Path to store big files",
    "isServerSide" : false,
    "value" : "minerva-big/",
    "group" : "Server configuration"
  }, {
    "idObject" : 31,
    "type" : "LEGEND_FILE_1",
    "valueType" : "URL",
    "commonName" : "Legend 1 image file",
    "isServerSide" : false,
    "value" : "resources/images/legend_a.png",
    "group" : "Legend and logo"
  }, {
    "idObject" : 32,
    "type" : "LEGEND_FILE_2",
    "valueType" : "URL",
    "commonName" : "Legend 2 image file",
    "isServerSide" : false,
    "value" : "resources/images/legend_b.png",
    "group" : "Legend and logo"
  }, {
    "idObject" : 33,
    "type" : "LEGEND_FILE_3",
    "valueType" : "URL",
    "commonName" : "Legend 3 image file",
    "isServerSide" : false,
    "value" : "resources/images/legend_c.png",
    "group" : "Legend and logo"
  }, {
    "idObject" : 34,
    "type" : "LEGEND_FILE_4",
    "valueType" : "URL",
    "commonName" : "Legend 4 image file",
    "isServerSide" : false,
    "value" : "resources/images/legend_d.png",
    "group" : "Legend and logo"
  }, {
    "idObject" : 13,
    "type" : "USER_MANUAL_FILE",
    "valueType" : "URL",
    "commonName" : "User manual file",
    "isServerSide" : false,
    "value" : "resources/other/user_guide.pdf",
    "group" : "Legend and logo"
  }, {
    "idObject" : 39,
    "type" : "MIN_COLOR_VAL",
    "valueType" : "COLOR",
    "commonName" : "Overlay color for negative values",
    "isServerSide" : false,
    "value" : "FF0000",
    "group" : "Overlays"
  }, {
    "idObject" : 40,
    "type" : "MAX_COLOR_VAL",
    "valueType" : "COLOR",
    "commonName" : "Overlay color for positive values",
    "isServerSide" : false,
    "value" : "0000FF",
    "group" : "Overlays"
  }, {
    "idObject" : 41,
    "type" : "SIMPLE_COLOR_VAL",
    "valueType" : "COLOR",
    "commonName" : "Overlay color when no values are defined",
    "isServerSide" : false,
    "value" : "00FF00",
    "group" : "Overlays"
  }, {
    "idObject" : 42,
    "type" : "NEUTRAL_COLOR_VAL",
    "valueType" : "COLOR",
    "commonName" : "Overlay color for value=0",
    "isServerSide" : false,
    "value" : "FFFFFF",
    "group" : "Overlays"
  }, {
    "idObject" : 43,
    "type" : "OVERLAY_OPACITY",
    "valueType" : "DOUBLE",
    "commonName" : "Opacity used when drawing data overlays (value between 0.0-1.0)",
    "isServerSide" : false,
    "value" : "0.8",
    "group" : "Overlays"
  }, {
    "idObject" : 11,
    "type" : "REQUEST_ACCOUNT_DEFAULT_CONTENT",
    "valueType" : "TEXT",
    "commonName" : "Email content used for requesting an account",
    "isServerSide" : false,
    "value" : "Dear Disease map team,\nI would like to request an account in the system.\nKind regards",
    "group" : "Email notification details"
  }, {
    "idObject" : 12,
    "type" : "TERMS_OF_USE",
    "valueType" : "URL",
    "commonName" : "URL of platform's Terms of Service",
    "isServerSide" : false,
    "value" : "",
    "group" : "Legend and logo"
  }, {
    "idObject" : 14,
    "type" : "COOKIE_POLICY_URL",
    "valueType" : "URL",
    "commonName" : "Privacy policy (url)",
    "isServerSide" : false,
    "value" : "/minerva/default-cookie-policy.xhtml",
    "group" : "Server configuration"
  }, {
    "idObject" : 1,
    "type" : "SESSION_LENGTH",
    "valueType" : "INTEGER",
    "commonName" : "Max session inactivity time (in seconds)",
    "isServerSide" : false,
    "value" : "7200",
    "group" : "Server configuration"
  }, {
    "idObject" : 16,
    "type" : "MINERVA_ROOT",
    "valueType" : "URL",
    "commonName" : "Minerva root url",
    "isServerSide" : false,
    "value" : "",
    "group" : "Server configuration"
  }, {
    "idObject" : 10,
    "type" : "REQUEST_ACCOUNT_DEFAULT_TITLE",
    "valueType" : "STRING",
    "commonName" : "Email title used for requesting an account",
    "isServerSide" : false,
    "value" : "MINERVA account request",
    "group" : "Email notification details"
  }, {
    "idObject" : 35,
    "type" : "CUSTOM_CSS",
    "valueType" : "TEXT",
    "commonName" : "Custom CSS",
    "isServerSide" : false,
    "value" : "",
    "group" : "Legend and logo"
  }, {
    "idObject" : 83,
    "type" : "ORCID_CLIENT_ID",
    "valueType" : "TEXT",
    "commonName" : "Orcid Client ID",
    "isServerSide" : false,
    "value" : "",
    "group" : "OAuth conifguration"
  }, {
    "idObject" : 84,
    "type" : "ORCID_CLIENT_SECRET",
    "valueType" : "PASSWORD",
    "commonName" : "Orcid Client Secret",
    "isServerSide" : false,
    "group" : "OAuth conifguration"
  }, {
    "idObject" : 20,
    "type" : "ALLOW_AUTO_REGISTER",
    "valueType" : "BOOLEAN",
    "commonName" : "Allow users to create accounts",
    "isServerSide" : false,
    "value" : "false",
    "group" : "Server configuration"
  }, {
    "idObject" : 21,
    "type" : "REQUIRE_APPROVAL_FOR_AUTO_REGISTERED_USERS",
    "valueType" : "BOOLEAN",
    "commonName" : "Require admin approval for auto-registered accounts",
    "isServerSide" : false,
    "value" : "true",
    "group" : "Server configuration"
  }, {
    "idObject" : 91,
    "type" : "MATOMO_URL",
    "valueType" : "URL",
    "commonName" : "Matomo tracking url (for example: https://cdn.matomo.cloud/atcomp.matomo.cloud/container_d9VKcbPg_dev_d48ac09b17cfa365367b6ce.js)",
    "isServerSide" : false,
    "value" : "",
    "group" : "Server configuration"
  } ],
  "imageFormats" : [ {
    "name" : "PNG image",
    "handler" : "lcsb.mapviewer.converter.graphics.PngImageGenerator",
    "extension" : "png"
  }, {
    "name" : "PDF image",
    "handler" : "lcsb.mapviewer.converter.graphics.PdfImageGenerator",
    "extension" : "pdf"
  }, {
    "name" : "SVG image",
    "handler" : "lcsb.mapviewer.converter.graphics.SvgImageGenerator",
    "extension" : "svg"
  } ],
  "modelFormats" : [ {
    "name" : "CellDesigner SBML",
    "handler" : "lcsb.mapviewer.converter.model.celldesigner.CellDesignerXmlParser",
    "extension" : "xml",
    "extensions" : [ "xml" ]
  }, {
    "name" : "SBGN-ML",
    "handler" : "lcsb.mapviewer.converter.model.sbgnml.SbgnmlXmlConverter",
    "extension" : "sbgn",
    "extensions" : [ "sbgn" ]
  }, {
    "name" : "SBML",
    "handler" : "lcsb.mapviewer.converter.model.sbml.SbmlParser",
    "extension" : "xml",
    "extensions" : [ "xml", "sbml" ]
  }, {
    "name" : "GPML",
    "handler" : "lcsb.mapviewer.wikipathway.GpmlParser",
    "extension" : "gpml",
    "extensions" : [ "gpml" ]
  } ],
  "overlayTypes" : [ {
    "name" : "GENERIC"
  }, {
    "name" : "GENETIC_VARIANT"
  } ],
  "elementTypes" : [ {
    "className" : "lcsb.mapviewer.model.map.species.Element",
    "name" : "Element",
    "parentClass" : "lcsb.mapviewer.model.map.BioEntity"
  }, {
    "className" : "lcsb.mapviewer.model.map.compartment.Compartment",
    "name" : "Compartment",
    "parentClass" : "lcsb.mapviewer.model.map.species.Element"
  }, {
    "className" : "lcsb.mapviewer.model.map.species.Species",
    "name" : "Species",
    "parentClass" : "lcsb.mapviewer.model.map.species.Element"
  }, {
    "className" : "lcsb.mapviewer.model.map.compartment.LeftSquareCompartment",
    "name" : "Compartment",
    "parentClass" : "lcsb.mapviewer.model.map.compartment.Compartment"
  }, {
    "className" : "lcsb.mapviewer.model.map.compartment.BottomSquareCompartment",
    "name" : "Compartment",
    "parentClass" : "lcsb.mapviewer.model.map.compartment.Compartment"
  }, {
    "className" : "lcsb.mapviewer.model.map.compartment.RightSquareCompartment",
    "name" : "Compartment",
    "parentClass" : "lcsb.mapviewer.model.map.compartment.Compartment"
  }, {
    "className" : "lcsb.mapviewer.model.map.compartment.TopSquareCompartment",
    "name" : "Compartment",
    "parentClass" : "lcsb.mapviewer.model.map.compartment.Compartment"
  }, {
    "className" : "lcsb.mapviewer.model.map.compartment.SquareCompartment",
    "name" : "Compartment",
    "parentClass" : "lcsb.mapviewer.model.map.compartment.Compartment"
  }, {
    "className" : "lcsb.mapviewer.model.map.compartment.OvalCompartment",
    "name" : "Compartment",
    "parentClass" : "lcsb.mapviewer.model.map.compartment.Compartment"
  }, {
    "className" : "lcsb.mapviewer.model.map.compartment.PathwayCompartment",
    "name" : "Pathway",
    "parentClass" : "lcsb.mapviewer.model.map.compartment.Compartment"
  }, {
    "className" : "lcsb.mapviewer.model.map.species.AntisenseRna",
    "name" : "Antisense RNA",
    "parentClass" : "lcsb.mapviewer.model.map.species.Species"
  }, {
    "className" : "lcsb.mapviewer.model.map.species.Chemical",
    "name" : "Chemical",
    "parentClass" : "lcsb.mapviewer.model.map.species.Species"
  }, {
    "className" : "lcsb.mapviewer.model.map.species.Complex",
    "name" : "Complex",
    "parentClass" : "lcsb.mapviewer.model.map.species.Species"
  }, {
    "className" : "lcsb.mapviewer.model.map.species.Degraded",
    "name" : "Degraded",
    "parentClass" : "lcsb.mapviewer.model.map.species.Species"
  }, {
    "className" : "lcsb.mapviewer.model.map.species.Drug",
    "name" : "Drug",
    "parentClass" : "lcsb.mapviewer.model.map.species.Species"
  }, {
    "className" : "lcsb.mapviewer.model.map.species.Gene",
    "name" : "Gene",
    "parentClass" : "lcsb.mapviewer.model.map.species.Species"
  }, {
    "className" : "lcsb.mapviewer.model.map.species.Phenotype",
    "name" : "Phenotype",
    "parentClass" : "lcsb.mapviewer.model.map.species.Species"
  }, {
    "className" : "lcsb.mapviewer.model.map.species.Protein",
    "name" : "Protein",
    "parentClass" : "lcsb.mapviewer.model.map.species.Species"
  }, {
    "className" : "lcsb.mapviewer.model.map.species.Rna",
    "name" : "RNA",
    "parentClass" : "lcsb.mapviewer.model.map.species.Species"
  }, {
    "className" : "lcsb.mapviewer.model.map.species.Unknown",
    "name" : "Unknown",
    "parentClass" : "lcsb.mapviewer.model.map.species.Species"
  }, {
    "className" : "lcsb.mapviewer.model.map.species.Ion",
    "name" : "Ion",
    "parentClass" : "lcsb.mapviewer.model.map.species.Chemical"
  }, {
    "className" : "lcsb.mapviewer.model.map.species.SimpleMolecule",
    "name" : "Simple molecule",
    "parentClass" : "lcsb.mapviewer.model.map.species.Chemical"
  }, {
    "className" : "lcsb.mapviewer.model.map.species.TruncatedProtein",
    "name" : "Protein",
    "parentClass" : "lcsb.mapviewer.model.map.species.Protein"
  }, {
    "className" : "lcsb.mapviewer.model.map.species.GenericProtein",
    "name" : "Protein",
    "parentClass" : "lcsb.mapviewer.model.map.species.Protein"
  }, {
    "className" : "lcsb.mapviewer.model.map.species.IonChannelProtein",
    "name" : "Protein",
    "parentClass" : "lcsb.mapviewer.model.map.species.Protein"
  }, {
    "className" : "lcsb.mapviewer.model.map.species.ReceptorProtein",
    "name" : "Protein",
    "parentClass" : "lcsb.mapviewer.model.map.species.Protein"
  } ],
  "reactionTypes" : [ {
    "className" : "lcsb.mapviewer.model.map.reaction.Reaction",
    "name" : "Generic Reaction",
    "parentClass" : "lcsb.mapviewer.model.map.BioEntity"
  }, {
    "className" : "lcsb.mapviewer.model.map.reaction.type.CatalysisReaction",
    "name" : "Catalysis",
    "parentClass" : "lcsb.mapviewer.model.map.reaction.Reaction"
  }, {
    "className" : "lcsb.mapviewer.model.map.reaction.type.DissociationReaction",
    "name" : "Dissociation",
    "parentClass" : "lcsb.mapviewer.model.map.reaction.Reaction"
  }, {
    "className" : "lcsb.mapviewer.model.map.reaction.type.HeterodimerAssociationReaction",
    "name" : "Heterodimer association",
    "parentClass" : "lcsb.mapviewer.model.map.reaction.Reaction"
  }, {
    "className" : "lcsb.mapviewer.model.map.reaction.type.InhibitionReaction",
    "name" : "Inhibition",
    "parentClass" : "lcsb.mapviewer.model.map.reaction.Reaction"
  }, {
    "className" : "lcsb.mapviewer.model.map.reaction.type.KnownTransitionOmittedReaction",
    "name" : "Known transition omitted",
    "parentClass" : "lcsb.mapviewer.model.map.reaction.Reaction"
  }, {
    "className" : "lcsb.mapviewer.model.map.reaction.type.ModulationReaction",
    "name" : "Modulation",
    "parentClass" : "lcsb.mapviewer.model.map.reaction.Reaction"
  }, {
    "className" : "lcsb.mapviewer.model.map.reaction.type.NegativeInfluenceReaction",
    "name" : "Negative influence",
    "parentClass" : "lcsb.mapviewer.model.map.reaction.Reaction"
  }, {
    "className" : "lcsb.mapviewer.model.map.reaction.type.PhysicalStimulationReaction",
    "name" : "Physical stimulation",
    "parentClass" : "lcsb.mapviewer.model.map.reaction.Reaction"
  }, {
    "className" : "lcsb.mapviewer.model.map.reaction.type.PositiveInfluenceReaction",
    "name" : "Positive influence",
    "parentClass" : "lcsb.mapviewer.model.map.reaction.Reaction"
  }, {
    "className" : "lcsb.mapviewer.model.map.reaction.type.ReducedModulationReaction",
    "name" : "Reduced modulation",
    "parentClass" : "lcsb.mapviewer.model.map.reaction.Reaction"
  }, {
    "className" : "lcsb.mapviewer.model.map.reaction.type.ReducedPhysicalStimulationReaction",
    "name" : "Reduced physical stimulation",
    "parentClass" : "lcsb.mapviewer.model.map.reaction.Reaction"
  }, {
    "className" : "lcsb.mapviewer.model.map.reaction.type.ReducedTriggerReaction",
    "name" : "Reduced trigger",
    "parentClass" : "lcsb.mapviewer.model.map.reaction.Reaction"
  }, {
    "className" : "lcsb.mapviewer.model.map.reaction.type.StateTransitionReaction",
    "name" : "State transition",
    "parentClass" : "lcsb.mapviewer.model.map.reaction.Reaction"
  }, {
    "className" : "lcsb.mapviewer.model.map.reaction.type.TranscriptionReaction",
    "name" : "Transcription",
    "parentClass" : "lcsb.mapviewer.model.map.reaction.Reaction"
  }, {
    "className" : "lcsb.mapviewer.model.map.reaction.type.TranslationReaction",
    "name" : "Translation",
    "parentClass" : "lcsb.mapviewer.model.map.reaction.Reaction"
  }, {
    "className" : "lcsb.mapviewer.model.map.reaction.type.TransportReaction",
    "name" : "Transport",
    "parentClass" : "lcsb.mapviewer.model.map.reaction.Reaction"
  }, {
    "className" : "lcsb.mapviewer.model.map.reaction.type.TriggerReaction",
    "name" : "Trigger",
    "parentClass" : "lcsb.mapviewer.model.map.reaction.Reaction"
  }, {
    "className" : "lcsb.mapviewer.model.map.reaction.type.TruncationReaction",
    "name" : "Truncation",
    "parentClass" : "lcsb.mapviewer.model.map.reaction.Reaction"
  }, {
    "className" : "lcsb.mapviewer.model.map.reaction.type.UnknownCatalysisReaction",
    "name" : "Unknown catalysis",
    "parentClass" : "lcsb.mapviewer.model.map.reaction.Reaction"
  }, {
    "className" : "lcsb.mapviewer.model.map.reaction.type.UnknownInhibitionReaction",
    "name" : "Unknown inhibition",
    "parentClass" : "lcsb.mapviewer.model.map.reaction.Reaction"
  }, {
    "className" : "lcsb.mapviewer.model.map.reaction.type.UnknownNegativeInfluenceReaction",
    "name" : "Unknown negative influence",
    "parentClass" : "lcsb.mapviewer.model.map.reaction.Reaction"
  }, {
    "className" : "lcsb.mapviewer.model.map.reaction.type.UnknownPositiveInfluenceReaction",
    "name" : "Unknown positive influence",
    "parentClass" : "lcsb.mapviewer.model.map.reaction.Reaction"
  }, {
    "className" : "lcsb.mapviewer.model.map.reaction.type.UnknownReducedModulationReaction",
    "name" : "Unknown reduced modulation",
    "parentClass" : "lcsb.mapviewer.model.map.reaction.Reaction"
  }, {
    "className" : "lcsb.mapviewer.model.map.reaction.type.UnknownReducedPhysicalStimulationReaction",
    "name" : "Unknown reduced physical stimulation",
    "parentClass" : "lcsb.mapviewer.model.map.reaction.Reaction"
  }, {
    "className" : "lcsb.mapviewer.model.map.reaction.type.UnknownReducedTriggerReaction",
    "name" : "Unknown reduced trigger",
    "parentClass" : "lcsb.mapviewer.model.map.reaction.Reaction"
  }, {
    "className" : "lcsb.mapviewer.model.map.reaction.type.UnknownTransitionReaction",
    "name" : "Unknown transition",
    "parentClass" : "lcsb.mapviewer.model.map.reaction.Reaction"
  } ],
  "miriamTypes" : {
    "ABS" : {
      "commonName" : "ABS",
      "homepage" : "http://genome.crg.es/datasets/abs2005/",
      "registryIdentifier" : "MIR:00000277",
      "uris" : [ "urn:miriam:abs", "http://identifiers.org/abs/", "http://identifiers.org/abs", "https://identifiers.org/abs/", "https://identifiers.org/abs" ]
    },
    "ACEVIEW_WORM" : {
      "commonName" : "Aceview Worm",
      "homepage" : "https://www.ncbi.nlm.nih.gov/IEB/Research/Acembly/index.html?worm",
      "registryIdentifier" : "MIR:00000282",
      "uris" : [ "urn:miriam:aceview.worm", "http://identifiers.org/aceview.worm/", "http://identifiers.org/aceview.worm", "https://identifiers.org/aceview.worm/", "https://identifiers.org/aceview.worm" ]
    },
    "AFFYMETRIX_PROBESET" : {
      "commonName" : "Affymetrix Probeset",
      "homepage" : "http://www.affymetrix.com/",
      "registryIdentifier" : "MIR:00000394",
      "uris" : [ "urn:miriam:affy.probeset", "http://identifiers.org/affy.probeset/", "http://identifiers.org/affy.probeset", "https://identifiers.org/affy.probeset/", "https://identifiers.org/affy.probeset" ]
    },
    "AFTOL" : {
      "commonName" : "AFTOL",
      "homepage" : "http://aftol.org/data.php",
      "registryIdentifier" : "MIR:00000411",
      "uris" : [ "urn:miriam:aftol.taxonomy", "http://identifiers.org/aftol.taxonomy/", "http://identifiers.org/aftol.taxonomy", "https://identifiers.org/aftol.taxonomy/", "https://identifiers.org/aftol.taxonomy" ]
    },
    "ALLERGOME" : {
      "commonName" : "Allergome",
      "homepage" : "http://www.allergome.org/",
      "registryIdentifier" : "MIR:00000334",
      "uris" : [ "urn:miriam:allergome", "http://identifiers.org/allergome/", "http://identifiers.org/allergome", "https://identifiers.org/allergome/", "https://identifiers.org/allergome" ]
    },
    "AMOEBADB" : {
      "commonName" : "AmoebaDB",
      "homepage" : "http://amoebadb.org/amoeba/",
      "registryIdentifier" : "MIR:00000148",
      "uris" : [ "urn:miriam:amoebadb", "http://identifiers.org/amoebadb/", "http://identifiers.org/amoebadb", "https://identifiers.org/amoebadb/", "https://identifiers.org/amoebadb" ]
    },
    "ANATOMICAL_THERAPEUTIC_CHEMICAL" : {
      "commonName" : "Anatomical Therapeutic Chemical",
      "homepage" : "http://www.whocc.no/atc_ddd_index/",
      "registryIdentifier" : "MIR:00000088",
      "uris" : [ "urn:miriam:atc", "http://identifiers.org/atc/", "http://identifiers.org/atc", "https://identifiers.org/atc/", "https://identifiers.org/atc" ]
    },
    "ANATOMICAL_THERAPEUTIC_CHEMICAL_VETINARY" : {
      "commonName" : "Anatomical Therapeutic Chemical Vetinary",
      "homepage" : "http://www.whocc.no/atcvet/atcvet_index/",
      "registryIdentifier" : "MIR:00000267",
      "uris" : [ "urn:miriam:atcvet", "http://identifiers.org/atcvet/", "http://identifiers.org/atcvet", "https://identifiers.org/atcvet/", "https://identifiers.org/atcvet" ]
    },
    "ANIMAL_DIVERSITY_WEB" : {
      "commonName" : "Animal Diversity Web",
      "homepage" : "https://animaldiversity.org/",
      "registryIdentifier" : "MIR:00000492",
      "uris" : [ "urn:miriam:adw", "http://identifiers.org/adw/", "http://identifiers.org/adw", "https://identifiers.org/adw/", "https://identifiers.org/adw" ]
    },
    "ANIMAL_GENOME_CATTLE_QTL" : {
      "commonName" : "Animal Genome Cattle QTL",
      "homepage" : "https://www.animalgenome.org/QTLdb",
      "registryIdentifier" : "MIR:00000504",
      "uris" : [ "urn:miriam:cattleqtldb", "http://identifiers.org/cattleqtldb/", "http://identifiers.org/cattleqtldb", "https://identifiers.org/cattleqtldb/", "https://identifiers.org/cattleqtldb" ]
    },
    "ANIMAL_GENOME_CHICKEN_QTL" : {
      "commonName" : "Animal Genome Chicken QTL",
      "homepage" : "https://www.animalgenome.org/QTLdb",
      "registryIdentifier" : "MIR:00000505",
      "uris" : [ "urn:miriam:chickenqtldb", "http://identifiers.org/chickenqtldb/", "http://identifiers.org/chickenqtldb", "https://identifiers.org/chickenqtldb/", "https://identifiers.org/chickenqtldb" ]
    },
    "ANIMAL_GENOME_PIG_QTL" : {
      "commonName" : "Animal Genome Pig QTL",
      "homepage" : "https://www.animalgenome.org/QTLdb",
      "registryIdentifier" : "MIR:00000506",
      "uris" : [ "urn:miriam:pigqtldb", "http://identifiers.org/pigqtldb/", "http://identifiers.org/pigqtldb", "https://identifiers.org/pigqtldb/", "https://identifiers.org/pigqtldb" ]
    },
    "ANIMAL_GENOME_SHEEP_QTL" : {
      "commonName" : "Animal Genome Sheep QTL",
      "homepage" : "https://www.animalgenome.org/QTLdb",
      "registryIdentifier" : "MIR:00000507",
      "uris" : [ "urn:miriam:sheepqtldb", "http://identifiers.org/sheepqtldb/", "http://identifiers.org/sheepqtldb", "https://identifiers.org/sheepqtldb/", "https://identifiers.org/sheepqtldb" ]
    },
    "ANIMAL_TFDB_FAMILY" : {
      "commonName" : "Animal TFDB Family",
      "homepage" : "http://www.bioguo.org/AnimalTFDB/family_index.php",
      "registryIdentifier" : "MIR:00000316",
      "uris" : [ "urn:miriam:atfdb.family", "http://identifiers.org/atfdb.family/", "http://identifiers.org/atfdb.family", "https://identifiers.org/atfdb.family/", "https://identifiers.org/atfdb.family" ]
    },
    "ANTIBIOTIC_RESISTANCE_GENES_DATABASE" : {
      "commonName" : "Antibiotic Resistance Genes Database",
      "homepage" : "http://ardb.cbcb.umd.edu/",
      "registryIdentifier" : "MIR:00000522",
      "uris" : [ "urn:miriam:ardb", "http://identifiers.org/ardb/", "http://identifiers.org/ardb", "https://identifiers.org/ardb/", "https://identifiers.org/ardb" ]
    },
    "ANTIBODY_REGISTRY" : {
      "commonName" : "Antibody Registry",
      "homepage" : "http://antibodyregistry.org/",
      "registryIdentifier" : "MIR:00000516",
      "uris" : [ "urn:miriam:antibodyregistry", "http://identifiers.org/antibodyregistry/", "http://identifiers.org/antibodyregistry", "https://identifiers.org/antibodyregistry/", "https://identifiers.org/antibodyregistry" ]
    },
    "ANTWEB" : {
      "commonName" : "AntWeb",
      "homepage" : "http://www.antweb.org/",
      "registryIdentifier" : "MIR:00000146",
      "uris" : [ "urn:miriam:antweb", "http://identifiers.org/antweb/", "http://identifiers.org/antweb", "https://identifiers.org/antweb/", "https://identifiers.org/antweb" ]
    },
    "APD" : {
      "commonName" : "APD",
      "homepage" : "http://aps.unmc.edu/AP/",
      "registryIdentifier" : "MIR:00000278",
      "uris" : [ "urn:miriam:apd", "http://identifiers.org/apd/", "http://identifiers.org/apd", "https://identifiers.org/apd/", "https://identifiers.org/apd" ]
    },
    "APHIDBASE_TRANSCRIPT" : {
      "commonName" : "AphidBase Transcript",
      "homepage" : "http://www.aphidbase.com/aphidbase",
      "registryIdentifier" : "MIR:00000393",
      "uris" : [ "urn:miriam:aphidbase.transcript", "http://identifiers.org/aphidbase.transcript/", "http://identifiers.org/aphidbase.transcript", "https://identifiers.org/aphidbase.transcript/", "https://identifiers.org/aphidbase.transcript" ]
    },
    "ARACHNOSERVER" : {
      "commonName" : "ArachnoServer",
      "homepage" : "http://www.arachnoserver.org/",
      "registryIdentifier" : "MIR:00000193",
      "uris" : [ "urn:miriam:arachnoserver", "http://identifiers.org/arachnoserver/", "http://identifiers.org/arachnoserver", "https://identifiers.org/arachnoserver/", "https://identifiers.org/arachnoserver" ]
    },
    "ARRAYEXPRESS" : {
      "commonName" : "ArrayExpress",
      "homepage" : "https://www.ebi.ac.uk/arrayexpress/",
      "registryIdentifier" : "MIR:00000036",
      "uris" : [ "urn:miriam:arrayexpress", "http://identifiers.org/arrayexpress/", "http://identifiers.org/arrayexpress", "https://identifiers.org/arrayexpress/", "https://identifiers.org/arrayexpress" ]
    },
    "ARRAYEXPRESS_PLATFORM" : {
      "commonName" : "ArrayExpress Platform",
      "homepage" : "https://www.ebi.ac.uk/arrayexpress/",
      "registryIdentifier" : "MIR:00000294",
      "uris" : [ "urn:miriam:arrayexpress.platform", "http://identifiers.org/arrayexpress.platform/", "http://identifiers.org/arrayexpress.platform", "https://identifiers.org/arrayexpress.platform/", "https://identifiers.org/arrayexpress.platform" ]
    },
    "ARXIV" : {
      "commonName" : "arXiv",
      "homepage" : "https://arxiv.org/",
      "registryIdentifier" : "MIR:00000035",
      "uris" : [ "urn:miriam:arxiv", "urn:oai:arXiv.org", "http://identifiers.org/arxiv/", "http://identifiers.org/arxiv", "https://identifiers.org/arxiv/", "https://identifiers.org/arxiv" ]
    },
    "ASAP" : {
      "commonName" : "ASAP",
      "homepage" : "http://asap.ahabs.wisc.edu/asap/home.php",
      "registryIdentifier" : "MIR:00000283",
      "uris" : [ "urn:miriam:asap", "http://identifiers.org/asap/", "http://identifiers.org/asap", "https://identifiers.org/asap/", "https://identifiers.org/asap" ]
    },
    "ASPGD_LOCUS" : {
      "commonName" : "AspGD Locus",
      "homepage" : "http://www.aspgd.org/",
      "registryIdentifier" : "MIR:00000412",
      "uris" : [ "urn:miriam:aspgd.locus", "http://identifiers.org/aspgd.locus/", "http://identifiers.org/aspgd.locus", "https://identifiers.org/aspgd.locus/", "https://identifiers.org/aspgd.locus" ]
    },
    "ASPGD_PROTEIN" : {
      "commonName" : "AspGD Protein",
      "homepage" : "http://www.aspgd.org/",
      "registryIdentifier" : "MIR:00000413",
      "uris" : [ "urn:miriam:aspgd.protein", "http://identifiers.org/aspgd.protein/", "http://identifiers.org/aspgd.protein", "https://identifiers.org/aspgd.protein/", "https://identifiers.org/aspgd.protein" ]
    },
    "ATCC" : {
      "commonName" : "ATCC",
      "homepage" : "http://www.atcc.org/",
      "registryIdentifier" : "MIR:00000284",
      "uris" : [ "urn:miriam:atcc", "http://identifiers.org/atcc/", "http://identifiers.org/atcc", "https://identifiers.org/atcc/", "https://identifiers.org/atcc" ]
    },
    "AUTDB" : {
      "commonName" : "AutDB",
      "homepage" : "http://autism.mindspec.org/autdb/",
      "registryIdentifier" : "MIR:00000415",
      "uris" : [ "urn:miriam:autdb", "http://identifiers.org/autdb/", "http://identifiers.org/autdb", "https://identifiers.org/autdb/", "https://identifiers.org/autdb" ]
    },
    "BACMAP_BIOGRAPHY" : {
      "commonName" : "BacMap Biography",
      "homepage" : "http://bacmap.wishartlab.com/",
      "registryIdentifier" : "MIR:00000361",
      "uris" : [ "urn:miriam:bacmap.biog", "http://identifiers.org/bacmap.biog/", "http://identifiers.org/bacmap.biog", "https://identifiers.org/bacmap.biog/", "https://identifiers.org/bacmap.biog" ]
    },
    "BACMAP_MAP" : {
      "commonName" : "BacMap Map",
      "homepage" : "http://bacmap.wishartlab.com/",
      "registryIdentifier" : "MIR:00000416",
      "uris" : [ "urn:miriam:bacmap.map", "http://identifiers.org/bacmap.map/", "http://identifiers.org/bacmap.map", "https://identifiers.org/bacmap.map/", "https://identifiers.org/bacmap.map" ]
    },
    "BDGP_EST" : {
      "commonName" : "BDGP EST",
      "homepage" : "https://www.ncbi.nlm.nih.gov/dbEST/index.html",
      "registryIdentifier" : "MIR:00000285",
      "uris" : [ "urn:miriam:bdgp.est", "http://identifiers.org/bdgp.est/", "http://identifiers.org/bdgp.est", "https://identifiers.org/bdgp.est/", "https://identifiers.org/bdgp.est" ]
    },
    "BDGP_INSERTION_DB" : {
      "commonName" : "BDGP insertion DB",
      "homepage" : "http://flypush.imgen.bcm.tmc.edu/pscreen/",
      "registryIdentifier" : "MIR:00000156",
      "uris" : [ "urn:miriam:bdgp.insertion", "http://identifiers.org/bdgp.insertion/", "http://identifiers.org/bdgp.insertion", "https://identifiers.org/bdgp.insertion/", "https://identifiers.org/bdgp.insertion" ]
    },
    "BEETLEBASE" : {
      "commonName" : "BeetleBase",
      "homepage" : "http://beetlebase.org/",
      "registryIdentifier" : "MIR:00000157",
      "uris" : [ "urn:miriam:beetlebase", "http://identifiers.org/beetlebase/", "http://identifiers.org/beetlebase", "https://identifiers.org/beetlebase/", "https://identifiers.org/beetlebase" ]
    },
    "BGEE_FAMILY" : {
      "commonName" : "Bgee family",
      "homepage" : "http://bgee.unil.ch/bgee/bgee",
      "registryIdentifier" : "MIR:00000417",
      "uris" : [ "urn:miriam:bgee.family", "http://identifiers.org/bgee.family/", "http://identifiers.org/bgee.family", "https://identifiers.org/bgee.family/", "https://identifiers.org/bgee.family" ]
    },
    "BGEE_GENE" : {
      "commonName" : "Bgee gene",
      "homepage" : "https://bgee.org/",
      "registryIdentifier" : "MIR:00000418",
      "uris" : [ "urn:miriam:bgee.gene", "http://identifiers.org/bgee.gene/", "http://identifiers.org/bgee.gene", "https://identifiers.org/bgee.gene/", "https://identifiers.org/bgee.gene" ]
    },
    "BGEE_ORGAN" : {
      "commonName" : "Bgee organ",
      "homepage" : "http://bgee.unil.ch/bgee/bgee",
      "registryIdentifier" : "MIR:00000420",
      "uris" : [ "urn:miriam:bgee.organ", "http://identifiers.org/bgee.organ/", "http://identifiers.org/bgee.organ", "https://identifiers.org/bgee.organ/", "https://identifiers.org/bgee.organ" ]
    },
    "BGEE_STAGE" : {
      "commonName" : "Bgee stage",
      "homepage" : "http://bgee.unil.ch/bgee/bgee",
      "registryIdentifier" : "MIR:00000419",
      "uris" : [ "urn:miriam:bgee.stage", "http://identifiers.org/bgee.stage/", "http://identifiers.org/bgee.stage", "https://identifiers.org/bgee.stage/", "https://identifiers.org/bgee.stage" ]
    },
    "BINDINGDB" : {
      "commonName" : "BindingDB",
      "homepage" : "https://www.bindingdb.org",
      "registryIdentifier" : "MIR:00000264",
      "uris" : [ "urn:miriam:bindingDB", "http://identifiers.org/bindingdb/", "http://identifiers.org/bindingdb", "https://identifiers.org/bindingdb/", "https://identifiers.org/bindingdb" ]
    },
    "BIOCARTA_PATHWAY" : {
      "commonName" : "BioCarta Pathway",
      "homepage" : "https://www.biocarta.com/",
      "registryIdentifier" : "MIR:00000421",
      "uris" : [ "urn:miriam:biocarta.pathway", "http://identifiers.org/biocarta.pathway/", "http://identifiers.org/biocarta.pathway", "https://identifiers.org/biocarta.pathway/", "https://identifiers.org/biocarta.pathway" ]
    },
    "BIOCATALOGUE" : {
      "commonName" : "BioCatalogue",
      "homepage" : "https://www.biocatalogue.org/",
      "registryIdentifier" : "MIR:00000140",
      "uris" : [ "urn:miriam:biocatalogue.service", "http://identifiers.org/biocatalogue.service/", "http://identifiers.org/biocatalogue.service", "https://identifiers.org/biocatalogue.service/", "https://identifiers.org/biocatalogue.service" ]
    },
    "BIOCYC" : {
      "commonName" : "BioCyc",
      "homepage" : "http://biocyc.org",
      "registryIdentifier" : "MIR:00000194",
      "uris" : [ "urn:miriam:biocyc", "http://identifiers.org/biocyc/", "http://identifiers.org/biocyc", "https://identifiers.org/biocyc/", "https://identifiers.org/biocyc" ]
    },
    "BIOGRID" : {
      "commonName" : "BioGRID",
      "homepage" : "http://thebiogrid.org/",
      "registryIdentifier" : "MIR:00000058",
      "uris" : [ "urn:miriam:biogrid", "http://identifiers.org/biogrid/", "http://identifiers.org/biogrid", "https://identifiers.org/biogrid/", "https://identifiers.org/biogrid" ]
    },
    "BIOKC" : {
      "commonName" : "BioKC",
      "homepage" : "https://biokb.lcsb.uni.lu/",
      "registryIdentifier" : "MIR:00000995",
      "uris" : [ "http://identifiers.org/biokc", "http://identifiers.org/biokc/", "https://identifiers.org/biokc", "https://identifiers.org/biokc/" ]
    },
    "BIOMODELS_DATABASE" : {
      "commonName" : "BioModels Database",
      "homepage" : "https://www.ebi.ac.uk/biomodels/",
      "registryIdentifier" : "MIR:00000007",
      "uris" : [ "urn:miriam:biomodels.db", "http://identifiers.org/biomodels.db/", "http://identifiers.org/biomodels.db", "https://identifiers.org/biomodels.db/", "https://identifiers.org/biomodels.db" ]
    },
    "BIONUMBERS" : {
      "commonName" : "BioNumbers",
      "homepage" : "https://bionumbers.hms.harvard.edu",
      "registryIdentifier" : "MIR:00000101",
      "uris" : [ "urn:miriam:bionumbers", "http://identifiers.org/bionumbers/", "http://identifiers.org/bionumbers", "https://identifiers.org/bionumbers/", "https://identifiers.org/bionumbers" ]
    },
    "BIOPORTAL" : {
      "commonName" : "BioPortal",
      "homepage" : "http://bioportal.bioontology.org/",
      "registryIdentifier" : "MIR:00000187",
      "uris" : [ "urn:miriam:bioportal", "http://identifiers.org/bioportal/", "http://identifiers.org/bioportal", "https://identifiers.org/bioportal/", "https://identifiers.org/bioportal" ]
    },
    "BIOPROJECT" : {
      "commonName" : "BioProject",
      "homepage" : "http://trace.ddbj.nig.ac.jp/bioproject/",
      "registryIdentifier" : "MIR:00000349",
      "uris" : [ "urn:miriam:bioproject", "http://identifiers.org/bioproject/", "http://identifiers.org/bioproject", "https://identifiers.org/bioproject/", "https://identifiers.org/bioproject" ]
    },
    "BIOSAMPLE" : {
      "commonName" : "BioSample",
      "homepage" : "https://www.ebi.ac.uk/biosamples/",
      "registryIdentifier" : "MIR:00000350",
      "uris" : [ "urn:miriam:biosample", "http://identifiers.org/biosample/", "http://identifiers.org/biosample", "https://identifiers.org/biosample/", "https://identifiers.org/biosample" ]
    },
    "BIOSYSTEMS" : {
      "commonName" : "BioSystems",
      "homepage" : "https://www.ncbi.nlm.nih.gov/biosystems/",
      "registryIdentifier" : "MIR:00000097",
      "uris" : [ "urn:miriam:biosystems", "http://identifiers.org/biosystems/", "http://identifiers.org/biosystems", "https://identifiers.org/biosystems/", "https://identifiers.org/biosystems" ]
    },
    "BITTERDB_COMPOUND" : {
      "commonName" : "BitterDB Compound",
      "homepage" : "http://bitterdb.agri.huji.ac.il/dbbitter.php",
      "registryIdentifier" : "MIR:00000348",
      "uris" : [ "urn:miriam:bitterdb.cpd", "http://identifiers.org/bitterdb.cpd/", "http://identifiers.org/bitterdb.cpd", "https://identifiers.org/bitterdb.cpd/", "https://identifiers.org/bitterdb.cpd" ]
    },
    "BITTERDB_RECEPTOR" : {
      "commonName" : "BitterDB Receptor",
      "homepage" : "http://bitterdb.agri.huji.ac.il/dbbitter.php",
      "registryIdentifier" : "MIR:00000347",
      "uris" : [ "urn:miriam:bitterdb.rec", "http://identifiers.org/bitterdb.rec/", "http://identifiers.org/bitterdb.rec", "https://identifiers.org/bitterdb.rec/", "https://identifiers.org/bitterdb.rec" ]
    },
    "BOLD_TAXONOMY" : {
      "commonName" : "BOLD Taxonomy",
      "homepage" : "http://www.boldsystems.org/",
      "registryIdentifier" : "MIR:00000158",
      "uris" : [ "urn:miriam:bold.taxonomy", "http://identifiers.org/bold.taxonomy/", "http://identifiers.org/bold.taxonomy", "https://identifiers.org/bold.taxonomy/", "https://identifiers.org/bold.taxonomy" ]
    },
    "BRENDA" : {
      "commonName" : "BRENDA",
      "homepage" : "http://www.brenda-enzymes.org",
      "registryIdentifier" : "MIR:00000071",
      "uris" : [ "urn:miriam:brenda", "http://identifiers.org/brenda/", "http://identifiers.org/brenda", "https://identifiers.org/brenda/", "https://identifiers.org/brenda" ]
    },
    "BRENDA_TISSUE_ONTOLOGY" : {
      "commonName" : "Brenda Tissue Ontology",
      "homepage" : "https://www.ebi.ac.uk/ols/ontologies/bto",
      "registryIdentifier" : "MIR:00000111",
      "uris" : [ "urn:miriam:bto", "urn:miriam:obo.bto", "http://identifiers.org/bto/", "http://identifiers.org/obo.bto/", "http://identifiers.org/BTO", "https://identifiers.org/bto/", "https://identifiers.org/obo.bto/", "https://identifiers.org/BTO" ]
    },
    "BROAD_FUNGAL_GENOME_INITIATIVE" : {
      "commonName" : "Broad Fungal Genome Initiative",
      "homepage" : "https://www.broadinstitute.org/annotation/genome/magnaporthe_grisea/",
      "registryIdentifier" : "MIR:00000438",
      "uris" : [ "urn:miriam:broad", "http://identifiers.org/broad/", "http://identifiers.org/broad", "https://identifiers.org/broad/", "https://identifiers.org/broad" ]
    },
    "BUGBASE_EXPT" : {
      "commonName" : "BugBase Expt",
      "homepage" : "http://bugs.sgul.ac.uk/E-BUGS",
      "registryIdentifier" : "MIR:00000404",
      "uris" : [ "urn:miriam:bugbase.expt", "http://identifiers.org/bugbase.expt/", "http://identifiers.org/bugbase.expt", "https://identifiers.org/bugbase.expt/", "https://identifiers.org/bugbase.expt" ]
    },
    "BUGBASE_PROTOCOL" : {
      "commonName" : "BugBase Protocol",
      "homepage" : "http://bugs.sgul.ac.uk/E-BUGS",
      "registryIdentifier" : "MIR:00000403",
      "uris" : [ "urn:miriam:bugbase.protocol", "http://identifiers.org/bugbase.protocol/", "http://identifiers.org/bugbase.protocol", "https://identifiers.org/bugbase.protocol/", "https://identifiers.org/bugbase.protocol" ]
    },
    "BYKDB" : {
      "commonName" : "BYKdb",
      "homepage" : "https://bykdb.ibcp.fr/BYKdb/",
      "registryIdentifier" : "MIR:00000253",
      "uris" : [ "urn:miriam:bykdb", "http://identifiers.org/bykdb/", "http://identifiers.org/bykdb", "https://identifiers.org/bykdb/", "https://identifiers.org/bykdb" ]
    },
    "BiGG_COMPARTMENT" : {
      "commonName" : "BiGG Compartment",
      "homepage" : "http://bigg.ucsd.edu/compartments/",
      "registryIdentifier" : "MIR:00000555",
      "uris" : [ "urn:miriam:bigg.compartment", "http://identifiers.org/bigg.compartment/", "http://identifiers.org/bigg.compartment", "https://identifiers.org/bigg.compartment/", "https://identifiers.org/bigg.compartment" ]
    },
    "BiGG_METABOLITE" : {
      "commonName" : "BiGG Metabolite",
      "homepage" : "http://bigg.ucsd.edu/universal/metabolites",
      "registryIdentifier" : "MIR:00000556",
      "uris" : [ "urn:miriam:bigg.metabolite", "http://identifiers.org/bigg.metabolite/", "http://identifiers.org/bigg.metabolite", "https://identifiers.org/bigg.metabolite/", "https://identifiers.org/bigg.metabolite" ]
    },
    "BiGG_REACTIONS" : {
      "commonName" : "BiGG Reaction",
      "homepage" : "http://bigg.ucsd.edu/universal/reactions",
      "registryIdentifier" : "MIR:00000557",
      "uris" : [ "urn:miriam:bigg.reaction", "http://identifiers.org/bigg.reaction/", "http://identifiers.org/bigg.reaction", "https://identifiers.org/bigg.reaction/", "https://identifiers.org/bigg.reaction" ]
    },
    "CANADIAN_DRUG_PRODUCT_DATABASE" : {
      "commonName" : "Canadian Drug Product Database",
      "homepage" : "http://webprod3.hc-sc.gc.ca/dpd-bdpp/index-eng.jsp",
      "registryIdentifier" : "MIR:00000272",
      "uris" : [ "urn:miriam:cdpd", "http://identifiers.org/cdpd/", "http://identifiers.org/cdpd", "https://identifiers.org/cdpd/", "https://identifiers.org/cdpd" ]
    },
    "CANDIDA_GENOME_DATABASE" : {
      "commonName" : "Candida Genome Database",
      "homepage" : "http://www.candidagenome.org/",
      "registryIdentifier" : "MIR:00000145",
      "uris" : [ "urn:miriam:cgd", "http://identifiers.org/cgd/", "http://identifiers.org/cgd", "https://identifiers.org/cgd/", "https://identifiers.org/cgd" ]
    },
    "CAPS_DB" : {
      "commonName" : "CAPS-DB",
      "homepage" : "http://www.bioinsilico.org/cgi-bin/CAPSDB/staticHTML/home",
      "registryIdentifier" : "MIR:00000396",
      "uris" : [ "urn:miriam:caps", "http://identifiers.org/caps/", "http://identifiers.org/caps", "https://identifiers.org/caps/", "https://identifiers.org/caps" ]
    },
    "CAS" : {
      "commonName" : "Chemical Abstracts Service",
      "homepage" : "http://commonchemistry.org",
      "registryIdentifier" : "MIR:00000237",
      "uris" : [ "urn:miriam:cas", "http://identifiers.org/cas/", "http://identifiers.org/cas", "https://identifiers.org/cas/", "https://identifiers.org/cas" ]
    },
    "CATH_DOMAIN" : {
      "commonName" : "CATH domain",
      "homepage" : "http://www.cathdb.info/",
      "registryIdentifier" : "MIR:00000210",
      "uris" : [ "urn:miriam:cath.domain", "http://identifiers.org/cath.domain/", "http://identifiers.org/cath.domain", "https://identifiers.org/cath.domain/", "https://identifiers.org/cath.domain" ]
    },
    "CATH_SUPERFAMILY" : {
      "commonName" : "CATH superfamily",
      "homepage" : "http://www.cathdb.info/",
      "registryIdentifier" : "MIR:00000209",
      "uris" : [ "urn:miriam:cath.superfamily", "http://identifiers.org/cath.superfamily/", "http://identifiers.org/cath.superfamily", "https://identifiers.org/cath.superfamily/", "https://identifiers.org/cath.superfamily" ]
    },
    "CAZY" : {
      "commonName" : "CAZy",
      "homepage" : "http://commonchemistry.org",
      "registryIdentifier" : "MIR:00000195",
      "uris" : [ "urn:miriam:cazy", "http://identifiers.org/cazy/", "http://identifiers.org/cazy", "https://identifiers.org/cazy/", "https://identifiers.org/cazy" ]
    },
    "CCDS" : {
      "commonName" : "Consensus CDS",
      "homepage" : "http://www.ncbi.nlm.nih.gov/CCDS/",
      "registryIdentifier" : "MIR:00000375",
      "uris" : [ "urn:miriam:ccds", "http://identifiers.org/ccds/", "http://identifiers.org/ccds", "https://identifiers.org/ccds/", "https://identifiers.org/ccds" ]
    },
    "CELL_CYCLE_ONTOLOGY" : {
      "commonName" : "Cell Cycle Ontology",
      "homepage" : "https://www.ebi.ac.uk/ontology-lookup/browse.do?ontName=CCO",
      "registryIdentifier" : "MIR:00000234",
      "uris" : [ "urn:miriam:cco", "http://identifiers.org/cco/", "http://identifiers.org/CCO", "https://identifiers.org/cco/", "https://identifiers.org/CCO" ]
    },
    "CELL_IMAGE_LIBRARY" : {
      "commonName" : "Cell Image Library",
      "homepage" : "http://cellimagelibrary.org/",
      "registryIdentifier" : "MIR:00000257",
      "uris" : [ "urn:miriam:cellimage", "http://identifiers.org/cellimage/", "http://identifiers.org/cellimage", "https://identifiers.org/cellimage/", "https://identifiers.org/cellimage" ]
    },
    "CELL_SIGNALING_TECHNOLOGY_ANTIBODY" : {
      "commonName" : "Cell Signaling Technology Antibody",
      "homepage" : "http://www.cellsignal.com/catalog/index.html",
      "registryIdentifier" : "MIR:00000430",
      "uris" : [ "urn:miriam:cst.ab", "http://identifiers.org/cst.ab/", "http://identifiers.org/cst.ab", "https://identifiers.org/cst.ab/", "https://identifiers.org/cst.ab" ]
    },
    "CELL_SIGNALING_TECHNOLOGY_PATHWAYS" : {
      "commonName" : "Cell Signaling Technology Pathways",
      "homepage" : "http://www.cellsignal.com/pathways/index.html",
      "registryIdentifier" : "MIR:00000429",
      "uris" : [ "urn:miriam:cst", "http://identifiers.org/cst/", "http://identifiers.org/cst", "https://identifiers.org/cst/", "https://identifiers.org/cst" ]
    },
    "CELL_TYPE_ONTOLOGY" : {
      "commonName" : "Cell Type Ontology",
      "homepage" : "https://www.ebi.ac.uk/ols/ontologies/cl",
      "registryIdentifier" : "MIR:00000110",
      "uris" : [ "urn:miriam:cl", "urn:miriam:obo.clo", "http://identifiers.org/cl/", "http://identifiers.org/CL", "https://identifiers.org/cl/", "https://identifiers.org/CL" ]
    },
    "CGSC_STRAIN" : {
      "commonName" : "CGSC Strain",
      "homepage" : "http://cgsc.biology.yale.edu/index.php",
      "registryIdentifier" : "MIR:00000295",
      "uris" : [ "urn:miriam:cgsc", "http://identifiers.org/cgsc/", "http://identifiers.org/cgsc", "https://identifiers.org/cgsc/", "https://identifiers.org/cgsc" ]
    },
    "CHARPROT" : {
      "commonName" : "CharProt",
      "homepage" : "http://www.jcvi.org/charprotdb",
      "registryIdentifier" : "MIR:00000341",
      "uris" : [ "urn:miriam:charprot", "http://identifiers.org/charprot/", "http://identifiers.org/charprot", "https://identifiers.org/charprot/", "https://identifiers.org/charprot" ]
    },
    "CHEBI" : {
      "commonName" : "Chebi",
      "homepage" : "http://www.ebi.ac.uk/chebi/",
      "registryIdentifier" : "MIR:00000002",
      "uris" : [ "urn:miriam:obo.chebi", "urn:miriam:chebi", "http://identifiers.org/chebi/", "http://identifiers.org/obo.chebi/", "http://identifiers.org/CHEBI", "https://identifiers.org/chebi/", "https://identifiers.org/obo.chebi/", "https://identifiers.org/CHEBI" ]
    },
    "CHEMBL_COMPOUND" : {
      "commonName" : "ChEMBL",
      "homepage" : "https://www.ebi.ac.uk/chembldb/",
      "registryIdentifier" : "MIR:00000084",
      "uris" : [ "urn:miriam:chembl.compound", "http://identifiers.org/chembl.compound/", "http://identifiers.org/chembl.compound", "https://identifiers.org/chembl.compound/", "https://identifiers.org/chembl.compound" ]
    },
    "CHEMBL_TARGET" : {
      "commonName" : "ChEMBL target",
      "homepage" : "https://www.ebi.ac.uk/chembldb/",
      "registryIdentifier" : "MIR:00000085",
      "uris" : [ "urn:miriam:chembl.target", "http://identifiers.org/chembl.target/", "http://identifiers.org/chembl.target", "https://identifiers.org/chembl.target/", "https://identifiers.org/chembl.target" ]
    },
    "CHEMDB" : {
      "commonName" : "ChemDB",
      "homepage" : "http://cdb.ics.uci.edu/",
      "registryIdentifier" : "MIR:00000279",
      "uris" : [ "urn:miriam:chemdb", "http://identifiers.org/chemdb/", "http://identifiers.org/chemdb", "https://identifiers.org/chemdb/", "https://identifiers.org/chemdb" ]
    },
    "CHEMSPIDER" : {
      "commonName" : "ChemSpider",
      "homepage" : "http://www.chemspider.com/",
      "registryIdentifier" : "MIR:00000138",
      "uris" : [ "urn:miriam:chemspider", "http://identifiers.org/chemspider/", "http://identifiers.org/chemspider", "https://identifiers.org/chemspider/", "https://identifiers.org/chemspider" ]
    },
    "CHEM_ID_PLUS" : {
      "commonName" : "ChemIDplus",
      "homepage" : "https://chem.nlm.nih.gov/chemidplus/",
      "registryIdentifier" : "MIR:00000096",
      "uris" : [ "urn:miriam:chemidplus", "http://identifiers.org/chemidplus/", "http://identifiers.org/chemidplus", "https://identifiers.org/chemidplus/", "https://identifiers.org/chemidplus" ]
    },
    "CLDB" : {
      "commonName" : "CLDB",
      "homepage" : "http://bioinformatics.hsanmartino.it/hypercldb/indexes.html",
      "registryIdentifier" : "MIR:00000390",
      "uris" : [ "urn:miriam:cldb", "http://identifiers.org/cldb/", "http://identifiers.org/cldb", "https://identifiers.org/cldb/", "https://identifiers.org/cldb" ]
    },
    "CLINICAL_TRIALS_GOV" : {
      "commonName" : "ClinicalTrials.gov",
      "homepage" : "https://clinicaltrials.gov/",
      "registryIdentifier" : "MIR:00000137",
      "uris" : [ "urn:miriam:clinicaltrials", "http://identifiers.org/clinicaltrials/", "http://identifiers.org/clinicaltrials", "https://identifiers.org/clinicaltrials/", "https://identifiers.org/clinicaltrials" ]
    },
    "CLINVAR_RECORD" : {
      "commonName" : "ClinVar Record",
      "homepage" : "http://www.ncbi.nlm.nih.gov/clinvar/",
      "registryIdentifier" : "MIR:00000534",
      "uris" : [ "urn:miriam:clinvar.record", "http://identifiers.org/clinvar.record/", "http://identifiers.org/clinvar.record", "https://identifiers.org/clinvar.record/", "https://identifiers.org/clinvar.record" ]
    },
    "COG" : {
      "commonName" : "Clusters of Orthologous Groups",
      "homepage" : "https://www.ncbi.nlm.nih.gov/COG/",
      "registryIdentifier" : "MIR:00000296",
      "uris" : [ "urn:miriam:cogs" ]
    },
    "COMBINE_SPECIFICATIONS" : {
      "commonName" : "COMBINE specifications",
      "homepage" : "https://co.mbine.org/standards/",
      "registryIdentifier" : "MIR:00000258",
      "uris" : [ "urn:miriam:combine.specifications", "http://identifiers.org/combine.specifications/", "http://identifiers.org/combine.specifications", "https://identifiers.org/combine.specifications/", "https://identifiers.org/combine.specifications" ]
    },
    "COMPLEX_PORTAL" : {
      "commonName" : "Complex Portal",
      "homepage" : "https://www.ebi.ac.uk/complexportal",
      "registryIdentifier" : "MIR:00000657",
      "uris" : [ "https://identifiers.org/complexportal", "https://identifiers.org/complexportal/", "http://identifiers.org/complexportal", "http://identifiers.org/complexportal/" ]
    },
    "COMPULYEAST" : {
      "commonName" : "Compulyeast",
      "homepage" : "http://compluyeast2dpage.dacya.ucm.es/",
      "registryIdentifier" : "MIR:00000198",
      "uris" : [ "urn:miriam:compulyeast", "http://identifiers.org/compulyeast/", "http://identifiers.org/compulyeast", "https://identifiers.org/compulyeast/", "https://identifiers.org/compulyeast" ]
    },
    "CONOSERVER" : {
      "commonName" : "Conoserver",
      "homepage" : "http://www.conoserver.org/",
      "registryIdentifier" : "MIR:00000254",
      "uris" : [ "urn:miriam:conoserver", "http://identifiers.org/conoserver/", "http://identifiers.org/conoserver", "https://identifiers.org/conoserver/", "https://identifiers.org/conoserver" ]
    },
    "CONSERVED_DOMAIN_DATABASE" : {
      "commonName" : "Conserved Domain Database",
      "homepage" : "https://www.ncbi.nlm.nih.gov/sites/entrez?db=cdd",
      "registryIdentifier" : "MIR:00000119",
      "uris" : [ "urn:miriam:cdd", "http://identifiers.org/cdd/", "http://identifiers.org/cdd", "https://identifiers.org/cdd/", "https://identifiers.org/cdd" ]
    },
    "CORIELL_CELL_REPOSITORIES" : {
      "commonName" : "Coriell Cell Repositories",
      "homepage" : "http://ccr.coriell.org/",
      "registryIdentifier" : "MIR:00000439",
      "uris" : [ "urn:miriam:coriell", "http://identifiers.org/coriell/", "http://identifiers.org/coriell", "https://identifiers.org/coriell/", "https://identifiers.org/coriell" ]
    },
    "CORUM" : {
      "commonName" : "CORUM",
      "homepage" : "https://mips.helmholtz-muenchen.de/genre/proj/corum/",
      "registryIdentifier" : "MIR:00000440",
      "uris" : [ "urn:miriam:corum", "http://identifiers.org/corum/", "http://identifiers.org/corum", "https://identifiers.org/corum/", "https://identifiers.org/corum" ]
    },
    "CPC" : {
      "commonName" : "Cooperative Patent Classification",
      "homepage" : "https://worldwide.espacenet.com/classification",
      "registryIdentifier" : "MIR:00000539",
      "uris" : [ "urn:miriam:cpc", "https://identifiers.org/cpc", "https://identifiers.org/cpc/", "http://identifiers.org/cpc", "http://identifiers.org/cpc/" ]
    },
    "CRYPTODB" : {
      "commonName" : "CryptoDB",
      "homepage" : "https://cryptodb.org/cryptodb/",
      "registryIdentifier" : "MIR:00000149",
      "uris" : [ "urn:miriam:cryptodb", "http://identifiers.org/cryptodb/", "http://identifiers.org/cryptodb", "https://identifiers.org/cryptodb/", "https://identifiers.org/cryptodb" ]
    },
    "CSA" : {
      "commonName" : "CSA",
      "homepage" : "https://www.ebi.ac.uk/thornton-srv/databases/CSA/",
      "registryIdentifier" : "MIR:00000144",
      "uris" : [ "urn:miriam:csa", "http://identifiers.org/csa/", "http://identifiers.org/csa", "https://identifiers.org/csa/", "https://identifiers.org/csa" ]
    },
    "CTD_DISEASE" : {
      "commonName" : "CTD Disease",
      "homepage" : "http://ctdbase.org/",
      "registryIdentifier" : "MIR:00000099",
      "uris" : [ "urn:miriam:ctd.disease", "http://identifiers.org/ctd.disease/", "http://identifiers.org/ctd.disease", "https://identifiers.org/ctd.disease/", "https://identifiers.org/ctd.disease" ]
    },
    "CTD_GENE" : {
      "commonName" : "CTD Gene",
      "homepage" : "http://ctdbase.org/",
      "registryIdentifier" : "MIR:00000100",
      "uris" : [ "urn:miriam:ctd.gene", "http://identifiers.org/ctd.gene/", "http://identifiers.org/ctd.gene", "https://identifiers.org/ctd.gene/", "https://identifiers.org/ctd.gene" ]
    },
    "CUBE_DB" : {
      "commonName" : "Cube db",
      "homepage" : "http://epsf.bmad.bii.a-star.edu.sg/cube/db/html/home.html",
      "registryIdentifier" : "MIR:00000397",
      "uris" : [ "urn:miriam:cubedb", "http://identifiers.org/cubedb/", "http://identifiers.org/cubedb", "https://identifiers.org/cubedb/", "https://identifiers.org/cubedb" ]
    },
    "CUTDB" : {
      "commonName" : "CutDB",
      "homepage" : "http://cutdb.burnham.org",
      "registryIdentifier" : "MIR:00000225",
      "uris" : [ "urn:miriam:pmap.cutdb", "http://identifiers.org/pmap.cutdb/", "http://identifiers.org/pmap.cutdb", "https://identifiers.org/pmap.cutdb/", "https://identifiers.org/pmap.cutdb" ]
    },
    "DAILYMED" : {
      "commonName" : "DailyMed",
      "homepage" : "https://dailymed.nlm.nih.gov/dailymed/",
      "registryIdentifier" : "MIR:00000434",
      "uris" : [ "urn:miriam:dailymed", "http://identifiers.org/dailymed/", "http://identifiers.org/dailymed", "https://identifiers.org/dailymed/", "https://identifiers.org/dailymed" ]
    },
    "DARC" : {
      "commonName" : "DARC",
      "homepage" : "http://darcsite.genzentrum.lmu.de/darc/index.php",
      "registryIdentifier" : "MIR:00000366",
      "uris" : [ "urn:miriam:darc", "http://identifiers.org/darc/", "http://identifiers.org/darc", "https://identifiers.org/darc/", "https://identifiers.org/darc" ]
    },
    "DATABASE_OF_INTERACTING_PROTEINS" : {
      "commonName" : "Database of Interacting Proteins",
      "homepage" : "https://dip.doe-mbi.ucla.edu/",
      "registryIdentifier" : "MIR:00000044",
      "uris" : [ "urn:miriam:dip", "http://identifiers.org/dip/", "http://identifiers.org/dip", "https://identifiers.org/dip/", "https://identifiers.org/dip" ]
    },
    "DATABASE_OF_QUANTITATIVE_CELLULAR_SIGNALING_MODEL" : {
      "commonName" : "Database of Quantitative Cellular Signaling: Model",
      "homepage" : "http://doqcs.ncbs.res.in/",
      "registryIdentifier" : "MIR:00000134",
      "uris" : [ "urn:miriam:doqcs.model", "http://identifiers.org/doqcs.model/", "http://identifiers.org/doqcs.model", "https://identifiers.org/doqcs.model/", "https://identifiers.org/doqcs.model" ]
    },
    "DATABASE_OF_QUANTITATIVE_CELLULAR_SIGNALING_PATHWAY" : {
      "commonName" : "Database of Quantitative Cellular Signaling: Pathway",
      "homepage" : "http://doqcs.ncbs.res.in/",
      "registryIdentifier" : "MIR:00000135",
      "uris" : [ "urn:miriam:doqcs.pathway", "http://identifiers.org/doqcs.pathway/", "http://identifiers.org/doqcs.pathway", "https://identifiers.org/doqcs.pathway/", "https://identifiers.org/doqcs.pathway" ]
    },
    "DATF" : {
      "commonName" : "DATF",
      "homepage" : "http://datf.cbi.pku.edu.cn/",
      "registryIdentifier" : "MIR:00000456",
      "uris" : [ "urn:miriam:datf", "http://identifiers.org/datf/", "http://identifiers.org/datf", "https://identifiers.org/datf/", "https://identifiers.org/datf" ]
    },
    "DBD" : {
      "commonName" : "DBD",
      "homepage" : "http://www.transcriptionfactor.org/",
      "registryIdentifier" : "MIR:00000455",
      "uris" : [ "urn:miriam:dbd", "http://identifiers.org/dbd/", "http://identifiers.org/dbd", "https://identifiers.org/dbd/", "https://identifiers.org/dbd" ]
    },
    "DBEST" : {
      "commonName" : "dbEST",
      "homepage" : "https://www.ncbi.nlm.nih.gov/nucest",
      "registryIdentifier" : "MIR:00000159",
      "uris" : [ "urn:miriam:dbest", "http://identifiers.org/dbest/", "http://identifiers.org/dbest", "https://identifiers.org/dbest/", "https://identifiers.org/dbest" ]
    },
    "DBG2_INTRONS" : {
      "commonName" : "DBG2 Introns",
      "homepage" : "http://webapps2.ucalgary.ca/~groupii/",
      "registryIdentifier" : "MIR:00000318",
      "uris" : [ "urn:miriam:dbg2introns", "http://identifiers.org/dbg2introns/", "http://identifiers.org/dbg2introns", "https://identifiers.org/dbg2introns/", "https://identifiers.org/dbg2introns" ]
    },
    "DBPROBE" : {
      "commonName" : "dbProbe",
      "homepage" : "https://www.ncbi.nlm.nih.gov/sites/entrez?db=probe",
      "registryIdentifier" : "MIR:00000160",
      "uris" : [ "urn:miriam:dbprobe", "http://identifiers.org/dbprobe/", "http://identifiers.org/dbprobe", "https://identifiers.org/dbprobe/", "https://identifiers.org/dbprobe" ]
    },
    "DB_SNP" : {
      "commonName" : "dbSNP at NCBI",
      "homepage" : "https://www.ncbi.nlm.nih.gov/snp/",
      "registryIdentifier" : "MIR:00000161",
      "uris" : [ "urn:miriam:dbsnp", "http://identifiers.org/dbsnp/", "http://identifiers.org/dbsnp", "https://identifiers.org/dbsnp/", "https://identifiers.org/dbsnp" ]
    },
    "DEGRADOME_DATABASE" : {
      "commonName" : "Degradome Database",
      "homepage" : "http://degradome.uniovi.es/",
      "registryIdentifier" : "MIR:00000454",
      "uris" : [ "urn:miriam:degradome", "http://identifiers.org/degradome/", "http://identifiers.org/degradome", "https://identifiers.org/degradome/", "https://identifiers.org/degradome" ]
    },
    "DEPOD" : {
      "commonName" : "DEPOD",
      "homepage" : "http://www.depod.bioss.uni-freiburg.de",
      "registryIdentifier" : "MIR:00000428",
      "uris" : [ "urn:miriam:depod", "http://identifiers.org/depod/", "http://identifiers.org/depod", "https://identifiers.org/depod/", "https://identifiers.org/depod" ]
    },
    "DICTYBASE_EST" : {
      "commonName" : "Dictybase EST",
      "homepage" : "http://dictybase.org/",
      "registryIdentifier" : "MIR:00000330",
      "uris" : [ "urn:miriam:dictybase.est", "http://identifiers.org/dictybase.est/", "http://identifiers.org/dictybase.est", "https://identifiers.org/dictybase.est/", "https://identifiers.org/dictybase.est" ]
    },
    "DICTYBASE_GENE" : {
      "commonName" : "Dictybase Gene",
      "homepage" : "http://dictybase.org/",
      "registryIdentifier" : "MIR:00000286",
      "uris" : [ "urn:miriam:dictybase.gene", "http://identifiers.org/dictybase.gene/", "http://identifiers.org/dictybase.gene", "https://identifiers.org/dictybase.gene/", "https://identifiers.org/dictybase.gene" ]
    },
    "DISPROT" : {
      "commonName" : "DisProt",
      "homepage" : "https://disprot.org/",
      "registryIdentifier" : "MIR:00000199",
      "uris" : [ "urn:miriam:disprot", "http://identifiers.org/disprot/", "http://identifiers.org/disprot", "https://identifiers.org/disprot/", "https://identifiers.org/disprot" ]
    },
    "DOI" : {
      "commonName" : "Digital Object Identifier",
      "homepage" : "http://www.doi.org/",
      "registryIdentifier" : "MIR:00000019",
      "uris" : [ "urn:miriam:doi", "http://identifiers.org/doi/", "http://identifiers.org/doi", "https://identifiers.org/doi/", "https://identifiers.org/doi" ]
    },
    "DOMMINO" : {
      "commonName" : "DOMMINO",
      "homepage" : "http://dommino.org/",
      "registryIdentifier" : "MIR:00000373",
      "uris" : [ "urn:miriam:dommino", "http://identifiers.org/dommino/", "http://identifiers.org/dommino", "https://identifiers.org/dommino/", "https://identifiers.org/dommino" ]
    },
    "DOOR" : {
      "commonName" : "DOOR",
      "homepage" : "http://csbl.bmb.uga.edu/DOOR/operon.php",
      "registryIdentifier" : "MIR:00000453",
      "uris" : [ "urn:miriam:door", "http://identifiers.org/door/", "http://identifiers.org/door", "https://identifiers.org/door/", "https://identifiers.org/door" ]
    },
    "DPV" : {
      "commonName" : "DPV",
      "homepage" : "http://www.dpvweb.net/",
      "registryIdentifier" : "MIR:00000280",
      "uris" : [ "urn:miriam:dpv", "http://identifiers.org/dpv/", "http://identifiers.org/dpv", "https://identifiers.org/dpv/", "https://identifiers.org/dpv" ]
    },
    "DRAGONDB_ALLELE" : {
      "commonName" : "DragonDB Allele",
      "homepage" : "http://www.antirrhinum.net/",
      "registryIdentifier" : "MIR:00000300",
      "uris" : [ "urn:miriam:dragondb.allele", "http://identifiers.org/dragondb.allele/", "http://identifiers.org/dragondb.allele", "https://identifiers.org/dragondb.allele/", "https://identifiers.org/dragondb.allele" ]
    },
    "DRAGONDB_DNA" : {
      "commonName" : "DragonDB DNA",
      "homepage" : "http://www.antirrhinum.net/",
      "registryIdentifier" : "MIR:00000297",
      "uris" : [ "urn:miriam:dragondb.dna", "http://identifiers.org/dragondb.dna/", "http://identifiers.org/dragondb.dna", "https://identifiers.org/dragondb.dna/", "https://identifiers.org/dragondb.dna" ]
    },
    "DRAGONDB_LOCUS" : {
      "commonName" : "DragonDB Locus",
      "homepage" : "http://www.antirrhinum.net/",
      "registryIdentifier" : "MIR:00000299",
      "uris" : [ "urn:miriam:dragondb.locus", "http://identifiers.org/dragondb.locus/", "http://identifiers.org/dragondb.locus", "https://identifiers.org/dragondb.locus/", "https://identifiers.org/dragondb.locus" ]
    },
    "DRAGONDB_PROTEIN" : {
      "commonName" : "DragonDB Protein",
      "homepage" : "http://www.antirrhinum.net/",
      "registryIdentifier" : "MIR:00000298",
      "uris" : [ "urn:miriam:dragondb.protein", "http://identifiers.org/dragondb.protein/", "http://identifiers.org/dragondb.protein", "https://identifiers.org/dragondb.protein/", "https://identifiers.org/dragondb.protein" ]
    },
    "DRSC" : {
      "commonName" : "DRSC",
      "homepage" : "http://flyrnai.org/",
      "registryIdentifier" : "MIR:00000367",
      "uris" : [ "urn:miriam:drsc", "http://identifiers.org/drsc/", "http://identifiers.org/drsc", "https://identifiers.org/drsc/", "https://identifiers.org/drsc" ]
    },
    "DRUGBANK" : {
      "commonName" : "DrugBank",
      "homepage" : "http://www.drugbank.ca/",
      "registryIdentifier" : "MIR:00000102",
      "uris" : [ "urn:miriam:drugbank", "http://identifiers.org/drugbank/", "http://identifiers.org/drugbank", "https://identifiers.org/drugbank/", "https://identifiers.org/drugbank" ]
    },
    "DRUGBANK_TARGET_V4" : {
      "commonName" : "DrugBank Target v4",
      "homepage" : "http://www.drugbank.ca/targets",
      "registryIdentifier" : "MIR:00000528",
      "uris" : [ "urn:miriam:drugbankv4.target", "urn:miriam:drugbank.target", "http://identifiers.org/drugbankv4.target/", "http://identifiers.org/drugbankv4.target", "https://identifiers.org/drugbankv4.target/", "https://identifiers.org/drugbankv4.target" ]
    },
    "EC" : {
      "commonName" : "Enzyme Nomenclature",
      "homepage" : "http://www.enzyme-database.org/",
      "registryIdentifier" : "MIR:00000004",
      "uris" : [ "urn:miriam:ec-code", "urn:lsid:ec-code.org", "http://identifiers.org/ec-code/", "http://identifiers.org/ec-code", "https://identifiers.org/ec-code/", "https://identifiers.org/ec-code" ]
    },
    "ECHOBASE" : {
      "commonName" : "EchoBASE",
      "homepage" : "http://www.york.ac.uk/",
      "registryIdentifier" : "MIR:00000200",
      "uris" : [ "urn:miriam:echobase", "http://identifiers.org/echobase/", "http://identifiers.org/echobase", "https://identifiers.org/echobase/", "https://identifiers.org/echobase" ]
    },
    "ECO" : {
      "commonName" : "Evidence Code Ontology",
      "homepage" : "https://www.ebi.ac.uk/ols/ontologies/eco",
      "registryIdentifier" : "MIR:00000055",
      "uris" : [ "urn:miriam:obo.eco", "urn:miriam:eco", "http://identifiers.org/eco/", "http://identifiers.org/obo.eco/", "http://identifiers.org/ECO", "https://identifiers.org/eco/", "https://identifiers.org/obo.eco/", "https://identifiers.org/ECO" ]
    },
    "ECOGENE" : {
      "commonName" : "EcoGene",
      "homepage" : "http://ecogene.org/",
      "registryIdentifier" : "MIR:00000163",
      "uris" : [ "urn:miriam:ecogene", "http://identifiers.org/ecogene/", "http://identifiers.org/ecogene", "https://identifiers.org/ecogene/", "https://identifiers.org/ecogene" ]
    },
    "ECOLIWIKI" : {
      "commonName" : "EcoliWiki",
      "homepage" : "http://ecoliwiki.net/colipedia/",
      "registryIdentifier" : "MIR:00000442",
      "uris" : [ "urn:miriam:ecoliwiki", "http://identifiers.org/ecoliwiki/", "http://identifiers.org/ecoliwiki", "https://identifiers.org/ecoliwiki/", "https://identifiers.org/ecoliwiki" ]
    },
    "EDAM_ONTOLOGY" : {
      "commonName" : "EDAM Ontology",
      "homepage" : "http://bioportal.bioontology.org/ontologies/EDAM",
      "registryIdentifier" : "MIR:00000189",
      "uris" : [ "urn:miriam:edam", "http://identifiers.org/edam/", "http://identifiers.org/edam", "https://identifiers.org/edam/", "https://identifiers.org/edam" ]
    },
    "EGGNOG" : {
      "commonName" : "eggNOG",
      "homepage" : "http://eggnog.embl.de/version_3.0/",
      "registryIdentifier" : "MIR:00000201",
      "uris" : [ "urn:miriam:eggnog", "http://identifiers.org/eggnog/", "http://identifiers.org/eggnog", "https://identifiers.org/eggnog/", "https://identifiers.org/eggnog" ]
    },
    "ELM" : {
      "commonName" : "ELM",
      "homepage" : "http://elm.eu.org/",
      "registryIdentifier" : "MIR:00000250",
      "uris" : [ "urn:miriam:elm", "http://identifiers.org/elm/", "http://identifiers.org/elm", "https://identifiers.org/elm/", "https://identifiers.org/elm" ]
    },
    "ENA" : {
      "commonName" : "ENA",
      "homepage" : "https://www.ncbi.nlm.nih.gov/Genbank/",
      "registryIdentifier" : "MIR:00000372",
      "uris" : [ "urn:miriam:ena.embl", "http://identifiers.org/ena.embl/", "http://identifiers.org/ena.embl", "https://identifiers.org/ena.embl/", "https://identifiers.org/ena.embl" ]
    },
    "ENSEMBL" : {
      "commonName" : "Ensembl",
      "homepage" : "https://www.ensembl.org/",
      "registryIdentifier" : "MIR:00000003",
      "uris" : [ "urn:miriam:ensembl", "http://identifiers.org/ensembl/", "http://identifiers.org/ensembl.gene/", "http://identifiers.org/ensembl", "https://identifiers.org/ensembl/", "https://identifiers.org/ensembl.gene/", "https://identifiers.org/ensembl" ]
    },
    "ENSEMBL_BACTERIA" : {
      "commonName" : "Ensembl Bacteria",
      "homepage" : "https://bacteria.ensembl.org/",
      "registryIdentifier" : "MIR:00000202",
      "uris" : [ "urn:miriam:ensembl.bacteria", "http://identifiers.org/ensembl.bacteria/", "http://identifiers.org/ensembl.bacteria", "https://identifiers.org/ensembl.bacteria/", "https://identifiers.org/ensembl.bacteria" ]
    },
    "ENSEMBL_FUNGI" : {
      "commonName" : "Ensembl Fungi",
      "homepage" : "https://fungi.ensembl.org/",
      "registryIdentifier" : "MIR:00000206",
      "uris" : [ "urn:miriam:ensembl.fungi", "http://identifiers.org/ensembl.fungi/", "http://identifiers.org/ensembl.fungi", "https://identifiers.org/ensembl.fungi/", "https://identifiers.org/ensembl.fungi" ]
    },
    "ENSEMBL_METAZOA" : {
      "commonName" : "Ensembl Metazoa",
      "homepage" : "https://metazoa.ensembl.org/",
      "registryIdentifier" : "MIR:00000204",
      "uris" : [ "urn:miriam:ensembl.metazoa", "http://identifiers.org/ensembl.metazoa/", "http://identifiers.org/ensembl.metazoa", "https://identifiers.org/ensembl.metazoa/", "https://identifiers.org/ensembl.metazoa" ]
    },
    "ENSEMBL_PLANTS" : {
      "commonName" : "Ensembl Plants",
      "homepage" : "http://plants.ensembl.org/",
      "registryIdentifier" : "MIR:00000205",
      "uris" : [ "urn:miriam:ensembl.plant", "http://identifiers.org/ensembl.plant/", "http://identifiers.org/ensembl.plant", "https://identifiers.org/ensembl.plant/", "https://identifiers.org/ensembl.plant" ]
    },
    "ENSEMBL_PROTISTS" : {
      "commonName" : "Ensembl Protists",
      "homepage" : "https://protists.ensembl.org",
      "registryIdentifier" : "MIR:00000203",
      "uris" : [ "urn:miriam:ensembl.protist", "http://identifiers.org/ensembl.protist/", "http://identifiers.org/ensembl.protist", "https://identifiers.org/ensembl.protist/", "https://identifiers.org/ensembl.protist" ]
    },
    "ENTREZ" : {
      "commonName" : "Entrez Gene",
      "homepage" : "http://www.ncbi.nlm.nih.gov/gene",
      "registryIdentifier" : "MIR:00000069",
      "uris" : [ "urn:miriam:ncbigene", "urn:miriam:ncbi.gene", "urn:miriam:entrez.gene", "http://identifiers.org/ncbigene/", "http://identifiers.org/ncbigene", "https://identifiers.org/ncbigene/", "https://identifiers.org/ncbigene" ]
    },
    "ENVIPATH" : {
      "commonName" : "enviPath",
      "homepage" : "https://envipath.org/",
      "registryIdentifier" : "MIR:00000727",
      "uris" : [ "http://identifiers.org/envipath/", "http://identifiers.org/envipath", "https://identifiers.org/envipath/", "https://identifiers.org/envipath" ]
    },
    "EPD" : {
      "commonName" : "EPD",
      "homepage" : "http://epd.vital-it.ch/",
      "registryIdentifier" : "MIR:00000408",
      "uris" : [ "urn:miriam:epd", "http://identifiers.org/epd/", "http://identifiers.org/epd", "https://identifiers.org/epd/", "https://identifiers.org/epd" ]
    },
    "EUROPEAN_GENOME_PHENOME_ARCHIVE_DATASET" : {
      "commonName" : "European Genome-phenome Archive Dataset",
      "homepage" : "https://www.ebi.ac.uk/ega/dataset",
      "registryIdentifier" : "MIR:00000512",
      "uris" : [ "urn:miriam:ega.dataset", "http://identifiers.org/ega.dataset/", "http://identifiers.org/ega.dataset", "https://identifiers.org/ega.dataset/", "https://identifiers.org/ega.dataset" ]
    },
    "EUROPEAN_GENOME_PHENOME_ARCHIVE_STUDY" : {
      "commonName" : "European Genome-phenome Archive Study",
      "homepage" : "https://www.ebi.ac.uk/ega/studies",
      "registryIdentifier" : "MIR:00000511",
      "uris" : [ "urn:miriam:ega.study", "http://identifiers.org/ega.study/", "http://identifiers.org/ega.study", "https://identifiers.org/ega.study/", "https://identifiers.org/ega.study" ]
    },
    "EU_CLINICAL_TRIALS" : {
      "commonName" : "EU Clinical Trials",
      "homepage" : "https://www.clinicaltrialsregister.eu/",
      "registryIdentifier" : "MIR:00000536",
      "uris" : [ "urn:miriam:euclinicaltrials", "http://identifiers.org/euclinicaltrials/", "http://identifiers.org/euclinicaltrials", "https://identifiers.org/euclinicaltrials/", "https://identifiers.org/euclinicaltrials" ]
    },
    "EXAC_GENE" : {
      "commonName" : "ExAC Gene",
      "homepage" : "http://exac.broadinstitute.org/",
      "registryIdentifier" : "MIR:00000548",
      "uris" : [ "urn:miriam:exac.gene", "http://identifiers.org/exac.gene/", "http://identifiers.org/exac.gene", "https://identifiers.org/exac.gene/", "https://identifiers.org/exac.gene" ]
    },
    "EXAC_TRANSCRIPT" : {
      "commonName" : "ExAC Transcript",
      "homepage" : "http://exac.broadinstitute.org/",
      "registryIdentifier" : "MIR:00000547",
      "uris" : [ "urn:miriam:exac.transcript", "http://identifiers.org/exac.transcript/", "http://identifiers.org/exac.transcript", "https://identifiers.org/exac.transcript/", "https://identifiers.org/exac.transcript" ]
    },
    "EXAC_VARIANT" : {
      "commonName" : "ExAC Variant",
      "homepage" : "http://exac.broadinstitute.org/",
      "registryIdentifier" : "MIR:00000541",
      "uris" : [ "urn:miriam:exac.variant", "http://identifiers.org/exac.variant/", "http://identifiers.org/exac.variant", "https://identifiers.org/exac.variant/", "https://identifiers.org/exac.variant" ]
    },
    "EXPERIMENTAL_FACTOR_ONTOLOGY" : {
      "commonName" : "Experimental Factor Ontology",
      "homepage" : "https://www.ebi.ac.uk/ols/ontologies/efo",
      "registryIdentifier" : "MIR:00000391",
      "uris" : [ "urn:miriam:efo", "http://identifiers.org/efo/", "http://identifiers.org/efo", "https://identifiers.org/efo/", "https://identifiers.org/efo" ]
    },
    "FLYBASE" : {
      "commonName" : "FlyBase",
      "homepage" : "https://www.alliancegenome.org",
      "registryIdentifier" : "MIR:00000030",
      "uris" : [ "urn:miriam:fb", "urn:miriam:flybase", "http://identifiers.org/fb/", "http://identifiers.org/fb", "https://identifiers.org/fb/", "https://identifiers.org/fb" ]
    },
    "FMA" : {
      "commonName" : "FMA",
      "homepage" : "https://www.ebi.ac.uk/ols/ontologies/fma/",
      "registryIdentifier" : "MIR:00000067",
      "uris" : [ "urn:miriam:fma", "urn:miriam:obo.fma", "http://identifiers.org/fma/", "http://identifiers.org/FMA", "https://identifiers.org/fma/", "https://identifiers.org/FMA" ]
    },
    "FOODB_COMPOUND" : {
      "commonName" : "FooDB Compound",
      "homepage" : "http://foodb.ca/foods",
      "registryIdentifier" : "MIR:00000530",
      "uris" : [ "urn:miriam:foodb.compound", "http://identifiers.org/foodb.compound/", "http://identifiers.org/foodb.compound", "https://identifiers.org/foodb.compound/", "https://identifiers.org/foodb.compound" ]
    },
    "FUNCBASE_FLY" : {
      "commonName" : "FuncBase Fly",
      "homepage" : "http://func.mshri.on.ca/fly",
      "registryIdentifier" : "MIR:00000461",
      "uris" : [ "urn:miriam:funcbase.fly", "http://identifiers.org/funcbase.fly/", "http://identifiers.org/funcbase.fly", "https://identifiers.org/funcbase.fly/", "https://identifiers.org/funcbase.fly" ]
    },
    "FUNCBASE_HUMAN" : {
      "commonName" : "FuncBase Human",
      "homepage" : "http://func.mshri.on.ca/human/",
      "registryIdentifier" : "MIR:00000462",
      "uris" : [ "urn:miriam:funcbase.human", "http://identifiers.org/funcbase.human/", "http://identifiers.org/funcbase.human", "https://identifiers.org/funcbase.human/", "https://identifiers.org/funcbase.human" ]
    },
    "FUNCBASE_MOUSE" : {
      "commonName" : "FuncBase Mouse",
      "homepage" : "http://func.mshri.on.ca/mouse/",
      "registryIdentifier" : "MIR:00000463",
      "uris" : [ "urn:miriam:funcbase.mouse", "http://identifiers.org/funcbase.mouse/", "http://identifiers.org/funcbase.mouse", "https://identifiers.org/funcbase.mouse/", "https://identifiers.org/funcbase.mouse" ]
    },
    "FUNCBASE_YEAST" : {
      "commonName" : "FuncBase Yeast",
      "homepage" : "http://func.mshri.on.ca/yeast",
      "registryIdentifier" : "MIR:00000464",
      "uris" : [ "urn:miriam:funcbase.yeast", "http://identifiers.org/funcbase.yeast/", "http://identifiers.org/funcbase.yeast", "https://identifiers.org/funcbase.yeast/", "https://identifiers.org/funcbase.yeast" ]
    },
    "FUNGIDB" : {
      "commonName" : "FungiDB",
      "homepage" : "https://fungidb.org/fungidb",
      "registryIdentifier" : "MIR:00000365",
      "uris" : [ "urn:miriam:fungidb", "http://identifiers.org/fungidb/", "http://identifiers.org/fungidb", "https://identifiers.org/fungidb/", "https://identifiers.org/fungidb" ]
    },
    "F_SNP" : {
      "commonName" : "F-SNP",
      "homepage" : "http://compbio.cs.queensu.ca/F-SNP/",
      "registryIdentifier" : "MIR:00000496",
      "uris" : [ "urn:miriam:fsnp", "http://identifiers.org/fsnp/", "http://identifiers.org/fsnp", "https://identifiers.org/fsnp/", "https://identifiers.org/fsnp" ]
    },
    "GABI" : {
      "commonName" : "GABI",
      "homepage" : "http://www.gabipd.org/",
      "registryIdentifier" : "MIR:00000164",
      "uris" : [ "urn:miriam:gabi", "http://identifiers.org/gabi/", "http://identifiers.org/gabi", "https://identifiers.org/gabi/", "https://identifiers.org/gabi" ]
    },
    "GENATLAS" : {
      "commonName" : "Genatlas",
      "homepage" : "http://genatlas.medecine.univ-paris5.fr/",
      "registryIdentifier" : "MIR:00000208",
      "uris" : [ "urn:miriam:genatlas", "http://identifiers.org/genatlas/", "http://identifiers.org/genatlas", "https://identifiers.org/genatlas/", "https://identifiers.org/genatlas" ]
    },
    "GENECARDS" : {
      "commonName" : "GeneCards",
      "homepage" : "http://www.genecards.org/",
      "registryIdentifier" : "MIR:00000323",
      "uris" : [ "urn:miriam:genecards", "http://identifiers.org/genecards/", "http://identifiers.org/genecards", "https://identifiers.org/genecards/", "https://identifiers.org/genecards" ]
    },
    "GENEFARM" : {
      "commonName" : "GeneFarm",
      "homepage" : "http://urgi.versailles.inra.fr/Genefarm/",
      "registryIdentifier" : "MIR:00000211",
      "uris" : [ "urn:miriam:genefarm", "http://identifiers.org/genefarm/", "http://identifiers.org/genefarm", "https://identifiers.org/genefarm/", "https://identifiers.org/genefarm" ]
    },
    "GENETREE" : {
      "commonName" : "GeneTree",
      "homepage" : "http://www.ensembl.org/",
      "registryIdentifier" : "MIR:00000214",
      "uris" : [ "urn:miriam:genetree", "http://identifiers.org/genetree/", "http://identifiers.org/genetree", "https://identifiers.org/genetree/", "https://identifiers.org/genetree" ]
    },
    "GENE_DB" : {
      "commonName" : "GeneDB",
      "homepage" : "https://www.genedb.org/",
      "registryIdentifier" : "MIR:00000106",
      "uris" : [ "urn:miriam:genedb", "http://identifiers.org/genedb/", "http://identifiers.org/genedb", "https://identifiers.org/genedb/", "https://identifiers.org/genedb" ]
    },
    "GENE_WIKI" : {
      "commonName" : "Gene Wiki",
      "homepage" : "http://en.wikipedia.org/wiki/Gene_Wiki",
      "registryIdentifier" : "MIR:00000487",
      "uris" : [ "urn:miriam:genewiki", "http://identifiers.org/genewiki/", "http://identifiers.org/genewiki", "https://identifiers.org/genewiki/", "https://identifiers.org/genewiki" ]
    },
    "GENOME_PROPERTIES" : {
      "commonName" : "Genome Properties",
      "homepage" : "https://www.ebi.ac.uk/interpro/genomeproperties/",
      "registryIdentifier" : "MIR:00000443",
      "uris" : [ "urn:miriam:genprop", "http://identifiers.org/genprop/", "http://identifiers.org/genprop", "https://identifiers.org/genprop/", "https://identifiers.org/genprop" ]
    },
    "GENOMIC_DATA_COMMONS_DATA_PORTAL" : {
      "commonName" : "Genomic Data Commons Data Portal",
      "homepage" : "https://gdc.cancer.gov/",
      "registryIdentifier" : "MIR:00000604",
      "uris" : [ "http://identifiers.org/gdc/", "http://identifiers.org/gdc", "https://identifiers.org/gdc/", "https://identifiers.org/gdc" ]
    },
    "GENPEPT" : {
      "commonName" : "GenPept",
      "homepage" : "https://www.ncbi.nlm.nih.gov/protein",
      "registryIdentifier" : "MIR:00000345",
      "uris" : [ "urn:miriam:genpept", "http://identifiers.org/genpept/", "http://identifiers.org/genpept", "https://identifiers.org/genpept/", "https://identifiers.org/genpept" ]
    },
    "GEO" : {
      "commonName" : "GEO",
      "homepage" : "https://www.ncbi.nlm.nih.gov/geo/",
      "registryIdentifier" : "MIR:00000054",
      "uris" : [ "urn:miriam:geo", "http://identifiers.org/geo/", "http://identifiers.org/geo", "https://identifiers.org/geo/", "https://identifiers.org/geo" ]
    },
    "GIARDIADB" : {
      "commonName" : "GiardiaDB",
      "homepage" : "https://giardiadb.org/giardiadb/",
      "registryIdentifier" : "MIR:00000151",
      "uris" : [ "urn:miriam:giardiadb", "http://identifiers.org/giardiadb/", "http://identifiers.org/giardiadb", "https://identifiers.org/giardiadb/", "https://identifiers.org/giardiadb" ]
    },
    "GLIDA_GPCR" : {
      "commonName" : "GLIDA GPCR",
      "homepage" : "http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/",
      "registryIdentifier" : "MIR:00000493",
      "uris" : [ "urn:miriam:glida.gpcr", "http://identifiers.org/glida.gpcr/", "http://identifiers.org/glida.gpcr", "https://identifiers.org/glida.gpcr/", "https://identifiers.org/glida.gpcr" ]
    },
    "GLIDA_LIGAND" : {
      "commonName" : "GLIDA Ligand",
      "homepage" : "http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/",
      "registryIdentifier" : "MIR:00000494",
      "uris" : [ "urn:miriam:glida.ligand", "http://identifiers.org/glida.ligand/", "http://identifiers.org/glida.ligand", "https://identifiers.org/glida.ligand/", "https://identifiers.org/glida.ligand" ]
    },
    "GLYCOEPITOPE" : {
      "commonName" : "GlycoEpitope",
      "homepage" : "https://www.glycoepitope.jp/epitopes/",
      "registryIdentifier" : "MIR:00000478",
      "uris" : [ "urn:miriam:glycoepitope", "http://identifiers.org/glycoepitope/", "http://identifiers.org/glycoepitope", "https://identifiers.org/glycoepitope/", "https://identifiers.org/glycoepitope" ]
    },
    "GLYCOMEDB" : {
      "commonName" : "GlycomeDB",
      "homepage" : "https://glytoucan.org/",
      "registryIdentifier" : "MIR:00000114",
      "uris" : [ "urn:miriam:glycomedb", "http://identifiers.org/glycomedb/", "http://identifiers.org/glycomedb", "https://identifiers.org/glycomedb/", "https://identifiers.org/glycomedb" ]
    },
    "GO" : {
      "commonName" : "Gene Ontology",
      "homepage" : "http://amigo.geneontology.org/amigo",
      "registryIdentifier" : "MIR:00000022",
      "uris" : [ "urn:miriam:obo.go", "urn:miriam:go", "http://identifiers.org/go/", "http://identifiers.org/obo.go/", "http://identifiers.org/GO", "https://identifiers.org/go/", "https://identifiers.org/obo.go/", "https://identifiers.org/GO" ]
    },
    "GOA" : {
      "commonName" : "GOA",
      "homepage" : "https://www.ebi.ac.uk/GOA/",
      "registryIdentifier" : "MIR:00000196",
      "uris" : [ "urn:miriam:goa", "http://identifiers.org/goa/", "http://identifiers.org/goa", "https://identifiers.org/goa/", "https://identifiers.org/goa" ]
    },
    "GOLD_GENOME" : {
      "commonName" : "GOLD genome",
      "homepage" : "http://www.genomesonline.org/cgi-bin/GOLD/index.cgi",
      "registryIdentifier" : "MIR:00000401",
      "uris" : [ "urn:miriam:gold.genome", "http://identifiers.org/gold.genome/", "http://identifiers.org/gold.genome", "https://identifiers.org/gold.genome/", "https://identifiers.org/gold.genome" ]
    },
    "GOLD_METADATA" : {
      "commonName" : "GOLD metadata",
      "homepage" : "http://www.genomesonline.org/cgi-bin/GOLD/index.cgi",
      "registryIdentifier" : "MIR:00000402",
      "uris" : [ "urn:miriam:gold.meta", "http://identifiers.org/gold.meta/", "http://identifiers.org/gold.meta", "https://identifiers.org/gold.meta/", "https://identifiers.org/gold.meta" ]
    },
    "GOLM_METABOLOME_DATABASE" : {
      "commonName" : "Golm Metabolome Database",
      "homepage" : "http://gmd.mpimp-golm.mpg.de/",
      "registryIdentifier" : "MIR:00000274",
      "uris" : [ "urn:miriam:gmd", "http://identifiers.org/gmd/", "http://identifiers.org/gmd", "https://identifiers.org/gmd/", "https://identifiers.org/gmd" ]
    },
    "GOLM_METABOLOME_DATABASE_ANALYTE" : {
      "commonName" : "Golm Metabolome Database Analyte",
      "homepage" : "http://gmd.mpimp-golm.mpg.de/",
      "registryIdentifier" : "MIR:00000426",
      "uris" : [ "urn:miriam:gmd.analyte", "http://identifiers.org/gmd.analyte/", "http://identifiers.org/gmd.analyte", "https://identifiers.org/gmd.analyte/", "https://identifiers.org/gmd.analyte" ]
    },
    "GOLM_METABOLOME_DATABASE_GC_MS_SPECTRA" : {
      "commonName" : "Golm Metabolome Database GC-MS spectra",
      "homepage" : "http://gmd.mpimp-golm.mpg.de/",
      "registryIdentifier" : "MIR:00000424",
      "uris" : [ "urn:miriam:gmd.gcms", "http://identifiers.org/gmd.gcms/", "http://identifiers.org/gmd.gcms", "https://identifiers.org/gmd.gcms/", "https://identifiers.org/gmd.gcms" ]
    },
    "GOLM_METABOLOME_DATABASE_PROFILE" : {
      "commonName" : "Golm Metabolome Database Profile",
      "homepage" : "http://gmd.mpimp-golm.mpg.de/",
      "registryIdentifier" : "MIR:00000423",
      "uris" : [ "urn:miriam:gmd.profile", "http://identifiers.org/gmd.profile/", "http://identifiers.org/gmd.profile", "https://identifiers.org/gmd.profile/", "https://identifiers.org/gmd.profile" ]
    },
    "GOLM_METABOLOME_DATABASE_REFERENCE_SUBSTANCE" : {
      "commonName" : "Golm Metabolome Database Reference Substance",
      "homepage" : "http://gmd.mpimp-golm.mpg.de/",
      "registryIdentifier" : "MIR:00000425",
      "uris" : [ "urn:miriam:gmd.ref", "http://identifiers.org/gmd.ref/", "http://identifiers.org/gmd.ref", "https://identifiers.org/gmd.ref/", "https://identifiers.org/gmd.ref" ]
    },
    "GOOGLE_PATENTS" : {
      "commonName" : "Google Patents",
      "homepage" : "https://www.google.com/patents/",
      "registryIdentifier" : "MIR:00000537",
      "uris" : [ "urn:miriam:google.patent", "http://identifiers.org/google.patent/", "http://identifiers.org/google.patent", "https://identifiers.org/google.patent/", "https://identifiers.org/google.patent" ]
    },
    "GO_REF" : {
      "commonName" : "Gene Ontology Reference",
      "homepage" : "http://www.geneontology.org/cgi-bin/references.cgi",
      "registryIdentifier" : "MIR:00000450",
      "uris" : [ "urn:miriam:go.ref", "http://identifiers.org/GO_REF/", "http://identifiers.org/GO_REF", "https://identifiers.org/GO_REF/", "https://identifiers.org/GO_REF" ]
    },
    "GPCRDB" : {
      "commonName" : "GPCRDB",
      "homepage" : "http://www.gpcrdb.org/",
      "registryIdentifier" : "MIR:00000212",
      "uris" : [ "urn:miriam:gpcrdb", "http://identifiers.org/gpcrdb/", "http://identifiers.org/gpcrdb", "https://identifiers.org/gpcrdb/", "https://identifiers.org/gpcrdb" ]
    },
    "GRAMENE_GENES" : {
      "commonName" : "Gramene genes",
      "homepage" : "http://www.gramene.org/",
      "registryIdentifier" : "MIR:00000182",
      "uris" : [ "urn:miriam:gramene.gene", "http://identifiers.org/gramene.gene/", "http://identifiers.org/gramene.gene", "https://identifiers.org/gramene.gene/", "https://identifiers.org/gramene.gene" ]
    },
    "GRAMENE_PROTEIN" : {
      "commonName" : "Gramene protein",
      "homepage" : "http://www.gramene.org/",
      "registryIdentifier" : "MIR:00000181",
      "uris" : [ "urn:miriam:gramene.protein", "http://identifiers.org/gramene.protein/", "http://identifiers.org/gramene.protein", "https://identifiers.org/gramene.protein/", "https://identifiers.org/gramene.protein" ]
    },
    "GRAMENE_QTL" : {
      "commonName" : "Gramene QTL",
      "homepage" : "http://www.gramene.org/",
      "registryIdentifier" : "MIR:00000184",
      "uris" : [ "urn:miriam:gramene.qtl", "http://identifiers.org/gramene.qtl/", "http://identifiers.org/gramene.qtl", "https://identifiers.org/gramene.qtl/", "https://identifiers.org/gramene.qtl" ]
    },
    "GRAMENE_TAXONOMY" : {
      "commonName" : "Gramene Taxonomy",
      "homepage" : "http://www.gramene.org/",
      "registryIdentifier" : "MIR:00000183",
      "uris" : [ "urn:miriam:gramene.taxonomy", "http://identifiers.org/gramene.taxonomy/", "http://identifiers.org/gramene.taxonomy", "https://identifiers.org/gramene.taxonomy/", "https://identifiers.org/gramene.taxonomy" ]
    },
    "GREENGENES" : {
      "commonName" : "GreenGenes",
      "homepage" : "http://greengenes.lbl.gov/",
      "registryIdentifier" : "MIR:00000165",
      "uris" : [ "urn:miriam:greengenes", "http://identifiers.org/greengenes/", "http://identifiers.org/greengenes", "https://identifiers.org/greengenes/", "https://identifiers.org/greengenes" ]
    },
    "GRIN_PLANT_TAXONOMY" : {
      "commonName" : "GRIN Plant Taxonomy",
      "homepage" : "http://www.ars-grin.gov/cgi-bin/npgs/html/index.pl?language=en",
      "registryIdentifier" : "MIR:00000166",
      "uris" : [ "urn:miriam:grin.taxonomy", "http://identifiers.org/grin.taxonomy/", "http://identifiers.org/grin.taxonomy", "https://identifiers.org/grin.taxonomy/", "https://identifiers.org/grin.taxonomy" ]
    },
    "GRSDB" : {
      "commonName" : "GRSDB",
      "homepage" : "http://bioinformatics.ramapo.edu/GRSDB2/",
      "registryIdentifier" : "MIR:00000495",
      "uris" : [ "urn:miriam:grsdb", "http://identifiers.org/grsdb/", "http://identifiers.org/grsdb", "https://identifiers.org/grsdb/", "https://identifiers.org/grsdb" ]
    },
    "GWAS_CENRAL_MARKER" : {
      "commonName" : "GWAS Central Marker",
      "homepage" : "https://www.gwascentral.org/markers/",
      "registryIdentifier" : "MIR:00000542",
      "uris" : [ "urn:miriam:gwascentral.marker", "http://identifiers.org/gwascentral.marker/", "http://identifiers.org/gwascentral.marker", "https://identifiers.org/gwascentral.marker/", "https://identifiers.org/gwascentral.marker" ]
    },
    "GWAS_CENRAL_PHENOTYPE" : {
      "commonName" : "GWAS Central Phenotype",
      "homepage" : "https://www.gwascentral.org/phenotypes",
      "registryIdentifier" : "MIR:00000543",
      "uris" : [ "urn:miriam:gwascentral.phenotype", "http://identifiers.org/gwascentral.phenotype/", "http://identifiers.org/gwascentral.phenotype", "https://identifiers.org/gwascentral.phenotype/", "https://identifiers.org/gwascentral.phenotype" ]
    },
    "GWAS_CENRAL_STUDY" : {
      "commonName" : "GWAS Central Study",
      "homepage" : "https://www.gwascentral.org/studies",
      "registryIdentifier" : "MIR:00000540",
      "uris" : [ "urn:miriam:gwascentral.study", "http://identifiers.org/gwascentral.study/", "http://identifiers.org/gwascentral.study", "https://identifiers.org/gwascentral.study/", "https://identifiers.org/gwascentral.study" ]
    },
    "GXA_EXPT" : {
      "commonName" : "GXA Expt",
      "homepage" : "https://www.ebi.ac.uk/gxa/",
      "registryIdentifier" : "MIR:00000379",
      "uris" : [ "urn:miriam:gxa.expt", "http://identifiers.org/gxa.expt/", "http://identifiers.org/gxa.expt", "https://identifiers.org/gxa.expt/", "https://identifiers.org/gxa.expt" ]
    },
    "GXA_GENE" : {
      "commonName" : "GXA Gene",
      "homepage" : "https://www.ebi.ac.uk/gxa/",
      "registryIdentifier" : "MIR:00000378",
      "uris" : [ "urn:miriam:gxa.gene", "http://identifiers.org/gxa.gene/", "http://identifiers.org/gxa.gene", "https://identifiers.org/gxa.gene/", "https://identifiers.org/gxa.gene" ]
    },
    "HAMAP" : {
      "commonName" : "HAMAP",
      "homepage" : "https://hamap.expasy.org/",
      "registryIdentifier" : "MIR:00000292",
      "uris" : [ "urn:miriam:hamap", "http://identifiers.org/hamap/", "http://identifiers.org/hamap", "https://identifiers.org/hamap/", "https://identifiers.org/hamap" ]
    },
    "HCVDB" : {
      "commonName" : "HCVDB",
      "homepage" : "http://euhcvdb.ibcp.fr/euHCVdb/",
      "registryIdentifier" : "MIR:00000207",
      "uris" : [ "urn:miriam:hcvdb", "http://identifiers.org/hcvdb/", "http://identifiers.org/hcvdb", "https://identifiers.org/hcvdb/", "https://identifiers.org/hcvdb" ]
    },
    "HGMD" : {
      "commonName" : "HGMD",
      "homepage" : "http://www.hgmd.cf.ac.uk/ac/index.php",
      "registryIdentifier" : "MIR:00000392",
      "uris" : [ "urn:miriam:hgmd", "http://identifiers.org/hgmd/", "http://identifiers.org/hgmd", "https://identifiers.org/hgmd/", "https://identifiers.org/hgmd" ]
    },
    "HGNC" : {
      "commonName" : "HGNC",
      "homepage" : "http://www.genenames.org",
      "registryIdentifier" : "MIR:00000080",
      "uris" : [ "urn:miriam:hgnc", "http://identifiers.org/hgnc/", "http://identifiers.org/hgnc", "https://identifiers.org/hgnc/", "https://identifiers.org/hgnc" ]
    },
    "HGNC_FAMILY" : {
      "commonName" : "HGNC Family",
      "homepage" : "https://www.genenames.org/",
      "registryIdentifier" : "MIR:00000520",
      "uris" : [ "urn:miriam:hgnc.family", "http://identifiers.org/hgnc.family/", "http://identifiers.org/hgnc.family", "https://identifiers.org/hgnc.family/", "https://identifiers.org/hgnc.family" ]
    },
    "HGNC_SYMBOL" : {
      "commonName" : "HGNC Symbol",
      "homepage" : "http://www.genenames.org",
      "registryIdentifier" : "MIR:00000362",
      "uris" : [ "urn:miriam:hgnc.symbol", "http://identifiers.org/hgnc.symbol/", "http://identifiers.org/hgnc.symbol", "https://identifiers.org/hgnc.symbol/", "https://identifiers.org/hgnc.symbol" ]
    },
    "HMDB" : {
      "commonName" : "HMDB",
      "homepage" : "http://www.hmdb.ca/",
      "registryIdentifier" : "MIR:00000051",
      "uris" : [ "urn:miriam:hmdb", "http://identifiers.org/hmdb/", "http://identifiers.org/hmdb", "https://identifiers.org/hmdb/", "https://identifiers.org/hmdb" ]
    },
    "HOGENOM" : {
      "commonName" : "HOGENOM",
      "homepage" : "http://pbil.univ-lyon1.fr/databases/hogenom/",
      "registryIdentifier" : "MIR:00000213",
      "uris" : [ "urn:miriam:hogenom", "http://identifiers.org/hogenom/", "http://identifiers.org/hogenom", "https://identifiers.org/hogenom/", "https://identifiers.org/hogenom" ]
    },
    "HOMD_SEQUENCE_METAINFORMATION" : {
      "commonName" : "HOMD Sequence Metainformation",
      "homepage" : "http://www.homd.org/index.php",
      "registryIdentifier" : "MIR:00000170",
      "uris" : [ "urn:miriam:homd.seq", "http://identifiers.org/homd.seq/", "http://identifiers.org/homd.seq", "https://identifiers.org/homd.seq/", "https://identifiers.org/homd.seq" ]
    },
    "HOMD_TAXONOMY" : {
      "commonName" : "HOMD Taxonomy",
      "homepage" : "http://www.homd.org/index.php",
      "registryIdentifier" : "MIR:00000171",
      "uris" : [ "urn:miriam:homd.taxon", "http://identifiers.org/homd.taxon/", "http://identifiers.org/homd.taxon", "https://identifiers.org/homd.taxon/", "https://identifiers.org/homd.taxon" ]
    },
    "HOMEODOMAIN_RESEARCH" : {
      "commonName" : "Homeodomain Research",
      "homepage" : "http://research.nhgri.nih.gov/apps/homeodomain/web/",
      "registryIdentifier" : "MIR:00000497",
      "uris" : [ "urn:miriam:hdr", "http://identifiers.org/hdr/", "http://identifiers.org/hdr", "https://identifiers.org/hdr/", "https://identifiers.org/hdr" ]
    },
    "HOMOLOGENE" : {
      "commonName" : "HomoloGene",
      "homepage" : "https://www.ncbi.nlm.nih.gov/homologene/",
      "registryIdentifier" : "MIR:00000275",
      "uris" : [ "urn:miriam:homologene", "http://identifiers.org/homologene/", "http://identifiers.org/homologene", "https://identifiers.org/homologene/", "https://identifiers.org/homologene" ]
    },
    "HOVERGEN" : {
      "commonName" : "HOVERGEN",
      "homepage" : "http://pbil.univ-lyon1.fr/databases/hovergen.php",
      "registryIdentifier" : "MIR:00000074",
      "uris" : [ "urn:miriam:hovergen", "http://identifiers.org/hovergen/", "http://identifiers.org/hovergen", "https://identifiers.org/hovergen/", "https://identifiers.org/hovergen" ]
    },
    "HPA" : {
      "commonName" : "HPA",
      "homepage" : "http://www.proteinatlas.org/",
      "registryIdentifier" : "MIR:00000336",
      "uris" : [ "urn:miriam:hpa", "http://identifiers.org/hpa/", "http://identifiers.org/hpa", "https://identifiers.org/hpa/", "https://identifiers.org/hpa" ]
    },
    "HPRD" : {
      "commonName" : "HPRD",
      "homepage" : "http://www.hprd.org/",
      "registryIdentifier" : "MIR:00000377",
      "uris" : [ "urn:miriam:hprd", "http://identifiers.org/hprd/", "http://identifiers.org/hprd", "https://identifiers.org/hprd/", "https://identifiers.org/hprd" ]
    },
    "HSSP" : {
      "commonName" : "HSSP",
      "homepage" : "http://swift.cmbi.kun.nl/swift/hssp/",
      "registryIdentifier" : "MIR:00000215",
      "uris" : [ "urn:miriam:hssp", "http://identifiers.org/hssp/", "http://identifiers.org/hssp", "https://identifiers.org/hssp/", "https://identifiers.org/hssp" ]
    },
    "HUGE" : {
      "commonName" : "HUGE",
      "homepage" : "http://www.kazusa.or.jp/huge/",
      "registryIdentifier" : "MIR:00000263",
      "uris" : [ "urn:miriam:huge", "http://identifiers.org/huge/", "http://identifiers.org/huge", "https://identifiers.org/huge/", "https://identifiers.org/huge" ]
    },
    "HUMAN_DISEASE_ONTOLOGY" : {
      "commonName" : "Human Disease Ontology",
      "homepage" : "http://bioportal.bioontology.org/ontologies/DOID",
      "registryIdentifier" : "MIR:00000233",
      "uris" : [ "urn:miriam:obo.do", "urn:miriam:doid", "http://identifiers.org/doid/", "http://identifiers.org/DOID", "https://identifiers.org/doid/", "https://identifiers.org/DOID" ]
    },
    "HUMAN_PHENOTYPE_ONTOLOGY" : {
      "commonName" : "Human Phenotype Ontology",
      "homepage" : "https://www.ebi.ac.uk/ols/ontologies/hp",
      "registryIdentifier" : "MIR:00000571",
      "uris" : [ "http://identifiers.org/hp/", "http://identifiers.org/HP", "https://identifiers.org/hp/", "https://identifiers.org/HP" ]
    },
    "HUMAN_PROTEOME_MAP_PEPTIDE" : {
      "commonName" : "Human Proteome Map Peptide",
      "homepage" : "http://www.humanproteomemap.org/index.php",
      "registryIdentifier" : "MIR:00000527",
      "uris" : [ "urn:miriam:hpm.peptide", "http://identifiers.org/hpm.peptide/", "http://identifiers.org/hpm.peptide", "https://identifiers.org/hpm.peptide/", "https://identifiers.org/hpm.peptide" ]
    },
    "HUMAN_PROTEOME_MAP_PROTEIN" : {
      "commonName" : "Human Proteome Map Protein",
      "homepage" : "http://www.humanproteomemap.org/index.php",
      "registryIdentifier" : "MIR:00000526",
      "uris" : [ "urn:miriam:hpm.protein", "http://identifiers.org/hpm.protein/", "http://identifiers.org/hpm.protein", "https://identifiers.org/hpm.protein/", "https://identifiers.org/hpm.protein" ]
    },
    "H_INVDB_LOCUS" : {
      "commonName" : "H-InvDb Locus",
      "homepage" : "http://h-invitational.jp/hinv/ahg-db/index.jsp",
      "registryIdentifier" : "MIR:00000167",
      "uris" : [ "urn:miriam:hinv.locus", "http://identifiers.org/hinv.locus/", "http://identifiers.org/hinv.locus", "https://identifiers.org/hinv.locus/", "https://identifiers.org/hinv.locus" ]
    },
    "H_INVDB_PROTEIN" : {
      "commonName" : "H-InvDb Protein",
      "homepage" : "http://h-invitational.jp/hinv/ahg-db/index.jsp",
      "registryIdentifier" : "MIR:00000169",
      "uris" : [ "urn:miriam:hinv.protein", "http://identifiers.org/hinv.protein/", "http://identifiers.org/hinv.protein", "https://identifiers.org/hinv.protein/", "https://identifiers.org/hinv.protein" ]
    },
    "H_INVDB_TRANSCRIPT" : {
      "commonName" : "H-InvDb Transcript",
      "homepage" : "http://h-invitational.jp/hinv/ahg-db/index.jsp",
      "registryIdentifier" : "MIR:00000168",
      "uris" : [ "urn:miriam:hinv.transcript", "http://identifiers.org/hinv.transcript/", "http://identifiers.org/hinv.transcript", "https://identifiers.org/hinv.transcript/", "https://identifiers.org/hinv.transcript" ]
    },
    "ICD" : {
      "commonName" : "ICD",
      "homepage" : "http://www.who.int/classifications/icd/en/",
      "registryIdentifier" : "MIR:00000009",
      "uris" : [ "urn:miriam:icd", "http://identifiers.org/icd/", "http://identifiers.org/icd", "https://identifiers.org/icd/", "https://identifiers.org/icd" ]
    },
    "ICEBERG_ELEMENT" : {
      "commonName" : "ICEberg element",
      "homepage" : "http://db-mml.sjtu.edu.cn/ICEberg/",
      "registryIdentifier" : "MIR:00000469",
      "uris" : [ "urn:miriam:iceberg.element", "http://identifiers.org/iceberg.element/", "http://identifiers.org/iceberg.element", "https://identifiers.org/iceberg.element/", "https://identifiers.org/iceberg.element" ]
    },
    "ICEBERG_FAMILY" : {
      "commonName" : "ICEberg family",
      "homepage" : "http://db-mml.sjtu.edu.cn/ICEberg/",
      "registryIdentifier" : "MIR:00000470",
      "uris" : [ "urn:miriam:iceberg.family", "http://identifiers.org/iceberg.family/", "http://identifiers.org/iceberg.family", "https://identifiers.org/iceberg.family/", "https://identifiers.org/iceberg.family" ]
    },
    "IDEAL" : {
      "commonName" : "IDEAL",
      "homepage" : "http://www.ideal.force.cs.is.nagoya-u.ac.jp/IDEAL/",
      "registryIdentifier" : "MIR:00000398",
      "uris" : [ "urn:miriam:ideal", "http://identifiers.org/ideal/", "http://identifiers.org/ideal", "https://identifiers.org/ideal/", "https://identifiers.org/ideal" ]
    },
    "IDENTIFIERS_ORG_TERMS" : {
      "commonName" : "Identifiers.org Terms",
      "homepage" : "https://identifiers.org/",
      "registryIdentifier" : "MIR:00000519",
      "uris" : [ "urn:miriam:idot", "http://identifiers.org/idot/", "http://identifiers.org/idot", "https://identifiers.org/idot/", "https://identifiers.org/idot" ]
    },
    "IMEX" : {
      "commonName" : "IMEx",
      "homepage" : "https://www.imexconsortium.org/",
      "registryIdentifier" : "MIR:00000122",
      "uris" : [ "urn:miriam:imex", "http://identifiers.org/imex/", "http://identifiers.org/imex", "https://identifiers.org/imex/", "https://identifiers.org/imex" ]
    },
    "IMGT_HLA" : {
      "commonName" : "IMGT HLA",
      "homepage" : "https://www.ebi.ac.uk/imgt/hla/allele.html",
      "registryIdentifier" : "MIR:00000331",
      "uris" : [ "urn:miriam:imgt.hla", "http://identifiers.org/imgt.hla/", "http://identifiers.org/imgt.hla", "https://identifiers.org/imgt.hla/", "https://identifiers.org/imgt.hla" ]
    },
    "IMGT_LIGM" : {
      "commonName" : "IMGT LIGM",
      "homepage" : "http://genius.embnet.dkfz-heidelberg.de/",
      "registryIdentifier" : "MIR:00000287",
      "uris" : [ "urn:miriam:imgt.ligm", "http://identifiers.org/imgt.ligm/", "http://identifiers.org/imgt.ligm", "https://identifiers.org/imgt.ligm/", "https://identifiers.org/imgt.ligm" ]
    },
    "INCHI" : {
      "commonName" : "InChI",
      "homepage" : "http://www.chemspider.com/",
      "registryIdentifier" : "MIR:00000383",
      "uris" : [ "urn:miriam:inchi", "http://identifiers.org/inchi/", "http://identifiers.org/inchi", "https://identifiers.org/inchi/", "https://identifiers.org/inchi" ]
    },
    "INCHIKEY" : {
      "commonName" : "InChIKey",
      "homepage" : "http://www.chemspider.com/",
      "registryIdentifier" : "MIR:00000387",
      "uris" : [ "urn:miriam:inchikey", "http://identifiers.org/inchikey/", "http://identifiers.org/inchi_key/", "http://identifiers.org/inchikey", "https://identifiers.org/inchikey/", "https://identifiers.org/inchi_key/", "https://identifiers.org/inchikey" ]
    },
    "INTACT" : {
      "commonName" : "IntAct",
      "homepage" : "https://www.ebi.ac.uk/intact/",
      "registryIdentifier" : "MIR:00000010",
      "uris" : [ "urn:miriam:intact", "http://identifiers.org/intact/", "http://identifiers.org/intact", "https://identifiers.org/intact/", "https://identifiers.org/intact" ]
    },
    "INTACT_MOLECULE" : {
      "commonName" : "IntAct Molecule",
      "homepage" : "https://www.ebi.ac.uk/intact/",
      "registryIdentifier" : "MIR:00000427",
      "uris" : [ "urn:miriam:intact.molecule", "http://identifiers.org/intact.molecule/", "http://identifiers.org/intact.molecule", "https://identifiers.org/intact.molecule/", "https://identifiers.org/intact.molecule" ]
    },
    "INTEGRATED_MICROBIAL_GENOMES_GENE" : {
      "commonName" : "Integrated Microbial Genomes Gene",
      "homepage" : "http://img.jgi.doe.gov/",
      "registryIdentifier" : "MIR:00000176",
      "uris" : [ "urn:miriam:img.gene", "http://identifiers.org/img.gene/", "http://identifiers.org/img.gene", "https://identifiers.org/img.gene/", "https://identifiers.org/img.gene" ]
    },
    "INTEGRATED_MICROBIAL_GENOMES_TAXON" : {
      "commonName" : "Integrated Microbial Genomes Taxon",
      "homepage" : "http://img.jgi.doe.gov/",
      "registryIdentifier" : "MIR:00000175",
      "uris" : [ "urn:miriam:img.taxon", "http://identifiers.org/img.taxon/", "http://identifiers.org/img.taxon", "https://identifiers.org/img.taxon/", "https://identifiers.org/img.taxon" ]
    },
    "INTERPRO" : {
      "commonName" : "InterPro",
      "homepage" : "http://www.ebi.ac.uk/interpro/",
      "registryIdentifier" : "MIR:00000011",
      "uris" : [ "urn:miriam:interpro", "http://identifiers.org/interpro/", "http://identifiers.org/interpro", "https://identifiers.org/interpro/", "https://identifiers.org/interpro" ]
    },
    "IRD_SEGMENT_SEQUENCE" : {
      "commonName" : "IRD Segment Sequence",
      "homepage" : "http://www.fludb.org/",
      "registryIdentifier" : "MIR:00000172",
      "uris" : [ "urn:miriam:ird.segment", "http://identifiers.org/ird.segment/", "http://identifiers.org/ird.segment", "https://identifiers.org/ird.segment/", "https://identifiers.org/ird.segment" ]
    },
    "IREFWEB" : {
      "commonName" : "iRefWeb",
      "homepage" : "http://wodaklab.org/iRefWeb/",
      "registryIdentifier" : "MIR:00000123",
      "uris" : [ "urn:miriam:irefweb", "http://identifiers.org/irefweb/", "http://identifiers.org/irefweb", "https://identifiers.org/irefweb/", "https://identifiers.org/irefweb" ]
    },
    "ISBN" : {
      "commonName" : "ISBN",
      "homepage" : "http://isbndb.com/",
      "registryIdentifier" : "MIR:00000064",
      "uris" : [ "urn:miriam:isbn", "http://identifiers.org/isbn/", "http://identifiers.org/isbn", "https://identifiers.org/isbn/", "https://identifiers.org/isbn" ]
    },
    "ISFINDER" : {
      "commonName" : "ISFinder",
      "homepage" : "http://www-is.biotoul.fr/i",
      "registryIdentifier" : "MIR:00000173",
      "uris" : [ "urn:miriam:isfinder", "http://identifiers.org/isfinder/", "http://identifiers.org/isfinder", "https://identifiers.org/isfinder/", "https://identifiers.org/isfinder" ]
    },
    "ISSN" : {
      "commonName" : "ISSN",
      "homepage" : "http://catalog.loc.gov/webvoy.htm",
      "registryIdentifier" : "MIR:00000301",
      "uris" : [ "urn:miriam:issn", "http://identifiers.org/issn/", "http://identifiers.org/issn", "https://identifiers.org/issn/", "https://identifiers.org/issn" ]
    },
    "IUPHAR_FAMILY" : {
      "commonName" : "IUPHAR family",
      "homepage" : "http://www.guidetopharmacology.org/",
      "registryIdentifier" : "MIR:00000317",
      "uris" : [ "urn:miriam:iuphar.family", "http://identifiers.org/iuphar.family/", "http://identifiers.org/iuphar.family", "https://identifiers.org/iuphar.family/", "https://identifiers.org/iuphar.family" ]
    },
    "IUPHAR_LIGAND" : {
      "commonName" : "IUPHAR ligand",
      "homepage" : "https://www.guidetopharmacology.org/GRAC/LigandListForward?database=all",
      "registryIdentifier" : "MIR:00000457",
      "uris" : [ "urn:miriam:iuphar.ligand", "http://identifiers.org/iuphar.ligand/", "http://identifiers.org/iuphar.ligand", "https://identifiers.org/iuphar.ligand/", "https://identifiers.org/iuphar.ligand" ]
    },
    "IUPHAR_RECEPTOR" : {
      "commonName" : "IUPHAR receptor",
      "homepage" : "http://www.guidetopharmacology.org/targets.jsp",
      "registryIdentifier" : "MIR:00000281",
      "uris" : [ "urn:miriam:iuphar.receptor", "http://identifiers.org/iuphar.receptor/", "http://identifiers.org/iuphar.receptor", "https://identifiers.org/iuphar.receptor/", "https://identifiers.org/iuphar.receptor" ]
    },
    "JAPAN_CHEMICAL_SUBSTANCE_DICTIONARY" : {
      "commonName" : "Japan Chemical Substance Dictionary",
      "homepage" : "http://jglobal.jst.go.jp/en/",
      "registryIdentifier" : "MIR:00000241",
      "uris" : [ "urn:miriam:jcsd", "http://identifiers.org/jcsd/", "http://identifiers.org/jcsd", "https://identifiers.org/jcsd/", "https://identifiers.org/jcsd" ]
    },
    "JAPAN_COLLECTION_OF_MICROORGANISMS" : {
      "commonName" : "Japan Collection of Microorganisms",
      "homepage" : "http://www.jcm.riken.go.jp/",
      "registryIdentifier" : "MIR:00000174",
      "uris" : [ "urn:miriam:jcm", "http://identifiers.org/jcm/", "http://identifiers.org/jcm", "https://identifiers.org/jcm/", "https://identifiers.org/jcm" ]
    },
    "JAX_MICE" : {
      "commonName" : "JAX Mice",
      "homepage" : "http://jaxmice.jax.org/",
      "registryIdentifier" : "MIR:00000337",
      "uris" : [ "urn:miriam:jaxmice", "http://identifiers.org/jaxmice/", "http://identifiers.org/jaxmice", "https://identifiers.org/jaxmice/", "https://identifiers.org/jaxmice" ]
    },
    "JCGGDB" : {
      "commonName" : "JCGGDB",
      "homepage" : "http://jcggdb.jp/index_en.html",
      "registryIdentifier" : "MIR:00000479",
      "uris" : [ "urn:miriam:jcggdb", "http://identifiers.org/jcggdb/", "http://identifiers.org/jcggdb", "https://identifiers.org/jcggdb/", "https://identifiers.org/jcggdb" ]
    },
    "JSTOR" : {
      "commonName" : "JSTOR",
      "homepage" : "http://www.jstor.org/",
      "registryIdentifier" : "MIR:00000444",
      "uris" : [ "urn:miriam:jstor", "http://identifiers.org/jstor/", "http://identifiers.org/jstor", "https://identifiers.org/jstor/", "https://identifiers.org/jstor" ]
    },
    "JWS_ONLINE" : {
      "commonName" : "JWS Online",
      "homepage" : "http://jjj.biochem.sun.ac.za/models/",
      "registryIdentifier" : "MIR:00000130",
      "uris" : [ "urn:miriam:jws", "http://identifiers.org/jws/", "http://identifiers.org/jws", "https://identifiers.org/jws/", "https://identifiers.org/jws" ]
    },
    "KEGG_COMPOUND" : {
      "commonName" : "Kegg Compound",
      "homepage" : "http://www.genome.jp/kegg/ligand.html",
      "registryIdentifier" : "MIR:00000013",
      "uris" : [ "urn:miriam:kegg.compound", "http://identifiers.org/kegg.compound/", "http://identifiers.org/kegg.compound", "https://identifiers.org/kegg.compound/", "https://identifiers.org/kegg.compound" ]
    },
    "KEGG_DISEASE" : {
      "commonName" : "KEGG Disease",
      "homepage" : "http://www.genome.jp/kegg/disease/",
      "registryIdentifier" : "MIR:00000475",
      "uris" : [ "urn:miriam:kegg.disease", "http://identifiers.org/kegg.disease/", "http://identifiers.org/kegg.disease", "https://identifiers.org/kegg.disease/", "https://identifiers.org/kegg.disease" ]
    },
    "KEGG_DRUG" : {
      "commonName" : "KEGG Drug",
      "homepage" : "https://www.genome.jp/kegg/drug/",
      "registryIdentifier" : "MIR:00000025",
      "uris" : [ "urn:miriam:kegg.drug", "http://identifiers.org/kegg.drug/", "http://identifiers.org/kegg.drug", "https://identifiers.org/kegg.drug/", "https://identifiers.org/kegg.drug" ]
    },
    "KEGG_ENVIRON" : {
      "commonName" : "KEGG Environ",
      "homepage" : "http://www.genome.jp/kegg/drug/environ.html",
      "registryIdentifier" : "MIR:00000389",
      "uris" : [ "urn:miriam:kegg.environ", "http://identifiers.org/kegg.environ/", "http://identifiers.org/kegg.environ", "https://identifiers.org/kegg.environ/", "https://identifiers.org/kegg.environ" ]
    },
    "KEGG_GENES" : {
      "commonName" : "Kegg Genes",
      "homepage" : "http://www.genome.jp/kegg/genes.html",
      "registryIdentifier" : "MIR:00000070",
      "uris" : [ "urn:miriam:kegg.genes", "http://identifiers.org/kegg.genes/", "http://identifiers.org/kegg.genes", "https://identifiers.org/kegg.genes/", "https://identifiers.org/kegg.genes" ]
    },
    "KEGG_GENOME" : {
      "commonName" : "KEGG Genome",
      "homepage" : "http://www.genome.jp/kegg/catalog/org_list.html",
      "registryIdentifier" : "MIR:00000238",
      "uris" : [ "urn:miriam:kegg.genome", "http://identifiers.org/kegg.genome/", "http://identifiers.org/kegg.genome", "https://identifiers.org/kegg.genome/", "https://identifiers.org/kegg.genome" ]
    },
    "KEGG_GLYCAN" : {
      "commonName" : "Kegg Glycan",
      "homepage" : "https://www.genome.jp/kegg/glycan/",
      "registryIdentifier" : "MIR:00000026",
      "uris" : [ "urn:miriam:kegg.glycan", "http://identifiers.org/kegg.glycan/", "http://identifiers.org/kegg.glycan", "https://identifiers.org/kegg.glycan/", "https://identifiers.org/kegg.glycan" ]
    },
    "KEGG_METAGENOME" : {
      "commonName" : "KEGG Metagenome",
      "homepage" : "http://www.genome.jp/kegg/catalog/org_list3.html",
      "registryIdentifier" : "MIR:00000239",
      "uris" : [ "urn:miriam:kegg.metagenome", "http://identifiers.org/kegg.metagenome/", "http://identifiers.org/kegg.metagenome", "https://identifiers.org/kegg.metagenome/", "https://identifiers.org/kegg.metagenome" ]
    },
    "KEGG_MODULE" : {
      "commonName" : "KEGG Module",
      "homepage" : "http://www.kegg.jp/kegg/module.html",
      "registryIdentifier" : "MIR:00000474",
      "uris" : [ "urn:miriam:kegg.module", "http://identifiers.org/kegg.module/", "http://identifiers.org/kegg.module", "https://identifiers.org/kegg.module/", "https://identifiers.org/kegg.module" ]
    },
    "KEGG_ORTHOLOGY" : {
      "commonName" : "KEGG Orthology",
      "homepage" : "http://www.genome.jp/kegg/ko.html",
      "registryIdentifier" : "MIR:00000116",
      "uris" : [ "urn:miriam:kegg.orthology", "http://identifiers.org/kegg.orthology/", "http://identifiers.org/kegg.orthology", "https://identifiers.org/kegg.orthology/", "https://identifiers.org/kegg.orthology" ]
    },
    "KEGG_PATHWAY" : {
      "commonName" : "Kegg Pathway",
      "homepage" : "http://www.genome.jp/kegg/pathway.html",
      "registryIdentifier" : "MIR:00000012",
      "uris" : [ "urn:miriam:kegg.pathway", "http://identifiers.org/kegg.pathway/", "http://identifiers.org/kegg.pathway", "https://identifiers.org/kegg.pathway/", "https://identifiers.org/kegg.pathway" ]
    },
    "KEGG_REACTION" : {
      "commonName" : "Kegg Reaction",
      "homepage" : "http://www.genome.jp/kegg/reaction/",
      "registryIdentifier" : "MIR:00000014",
      "uris" : [ "urn:miriam:kegg.reaction", "http://identifiers.org/kegg.reaction/", "http://identifiers.org/kegg.reaction", "https://identifiers.org/kegg.reaction/", "https://identifiers.org/kegg.reaction" ]
    },
    "KISAO" : {
      "commonName" : "KiSAO",
      "homepage" : "http://bioportal.bioontology.org/ontologies/KISAO",
      "registryIdentifier" : "MIR:00000108",
      "uris" : [ "urn:miriam:biomodels.kisao", "http://identifiers.org/biomodels.kisao/", "http://identifiers.org/biomodels.kisao", "https://identifiers.org/biomodels.kisao/", "https://identifiers.org/biomodels.kisao" ]
    },
    "KNAPSACK" : {
      "commonName" : "KnapSack",
      "homepage" : "http://kanaya.aist-nara.ac.jp/KNApSAcK/",
      "registryIdentifier" : "MIR:00000271",
      "uris" : [ "urn:miriam:knapsack", "http://identifiers.org/knapsack/", "http://identifiers.org/knapsack", "https://identifiers.org/knapsack/", "https://identifiers.org/knapsack" ]
    },
    "LIGANDBOX" : {
      "commonName" : "LigandBox",
      "homepage" : "http://www.mypresto5.com/ligandbox/cgi-bin/index.cgi?LANG=en",
      "registryIdentifier" : "MIR:00000477",
      "uris" : [ "urn:miriam:ligandbox", "http://identifiers.org/ligandbox/", "http://identifiers.org/ligandbox", "https://identifiers.org/ligandbox/", "https://identifiers.org/ligandbox" ]
    },
    "LIGAND_EXPO" : {
      "commonName" : "Ligand Expo",
      "homepage" : "http://ligand-depot.rutgers.edu/index.html",
      "registryIdentifier" : "MIR:00000062",
      "uris" : [ "urn:miriam:ligandexpo", "http://identifiers.org/ligandexpo/", "http://identifiers.org/ligandexpo", "https://identifiers.org/ligandexpo/", "https://identifiers.org/ligandexpo" ]
    },
    "LIGAND_GATED_ION_CHANNEL_DATABASE" : {
      "commonName" : "Ligand-Gated Ion Channel database",
      "homepage" : "https://www.ebi.ac.uk/compneur-srv/LGICdb/LGICdb.php",
      "registryIdentifier" : "MIR:00000087",
      "uris" : [ "urn:miriam:lgic", "http://identifiers.org/lgic/", "http://identifiers.org/lgic", "https://identifiers.org/lgic/", "https://identifiers.org/lgic" ]
    },
    "LINCS_CELL" : {
      "commonName" : "LINCS Cell",
      "homepage" : "http://lincsportal.ccs.miami.edu/cells/",
      "registryIdentifier" : "MIR:00000544",
      "uris" : [ "urn:miriam:lincs.cell", "http://identifiers.org/lincs.cell/", "http://identifiers.org/lincs.cell", "https://identifiers.org/lincs.cell/", "https://identifiers.org/lincs.cell" ]
    },
    "LINCS_PROTEIN" : {
      "commonName" : "LINCS Protein",
      "homepage" : "http://lincs.hms.harvard.edu/db/proteins/",
      "registryIdentifier" : "MIR:00000545",
      "uris" : [ "urn:miriam:lincs.protein", "http://identifiers.org/lincs.protein/", "http://identifiers.org/lincs.protein", "https://identifiers.org/lincs.protein/", "https://identifiers.org/lincs.protein" ]
    },
    "LIPID_BANK" : {
      "commonName" : "LipidBank",
      "homepage" : "http://lipidbank.jp/index.html",
      "registryIdentifier" : "MIR:00000115",
      "uris" : [ "urn:miriam:lipidbank", "http://identifiers.org/lipidbank/", "http://identifiers.org/lipidbank", "https://identifiers.org/lipidbank/", "https://identifiers.org/lipidbank" ]
    },
    "LIPID_MAPS" : {
      "commonName" : "LIPID MAPS",
      "homepage" : "http://www.lipidmaps.org",
      "registryIdentifier" : "MIR:00000052",
      "uris" : [ "urn:miriam:lipidmaps", "http://identifiers.org/lipidmaps/", "http://identifiers.org/lipidmaps", "https://identifiers.org/lipidmaps/", "https://identifiers.org/lipidmaps" ]
    },
    "LOCUS_REFERENCE_GENOMIC" : {
      "commonName" : "Locus Reference Genomic",
      "homepage" : "http://www.ensembl.org/",
      "registryIdentifier" : "MIR:00000376",
      "uris" : [ "urn:miriam:lrg", "http://identifiers.org/lrg/", "http://identifiers.org/lrg", "https://identifiers.org/lrg/", "https://identifiers.org/lrg" ]
    },
    "MACIE" : {
      "commonName" : "MACiE",
      "homepage" : "https://www.ebi.ac.uk/thornton-srv/databases/MACiE/index.html",
      "registryIdentifier" : "MIR:00000077",
      "uris" : [ "urn:miriam:macie", "http://identifiers.org/macie/", "http://identifiers.org/macie", "https://identifiers.org/macie/", "https://identifiers.org/macie" ]
    },
    "MAIZEGDB_LOCUS" : {
      "commonName" : "MaizeGDB Locus",
      "homepage" : "http://www.maizegdb.org/",
      "registryIdentifier" : "MIR:00000177",
      "uris" : [ "urn:miriam:maizegdb.locus", "http://identifiers.org/maizegdb.locus/", "http://identifiers.org/maizegdb.locus", "https://identifiers.org/maizegdb.locus/", "https://identifiers.org/maizegdb.locus" ]
    },
    "MASSBANK" : {
      "commonName" : "MassBank",
      "homepage" : "http://www.massbank.jp",
      "registryIdentifier" : "MIR:00000273",
      "uris" : [ "urn:miriam:massbank", "http://identifiers.org/massbank/", "http://identifiers.org/massbank", "https://identifiers.org/massbank/", "https://identifiers.org/massbank" ]
    },
    "MATHEMATICAL_MODELLING_ONTOLOGY" : {
      "commonName" : "Mathematical Modelling Ontology",
      "homepage" : "http://bioportal.bioontology.org/ontologies/MAMO",
      "registryIdentifier" : "MIR:00000517",
      "uris" : [ "urn:miriam:mamo", "http://identifiers.org/mamo/", "http://identifiers.org/mamo", "https://identifiers.org/mamo/", "https://identifiers.org/mamo" ]
    },
    "MATRIXDB" : {
      "commonName" : "MatrixDB",
      "homepage" : "http://matrixdb.univ-lyon1.fr/",
      "registryIdentifier" : "MIR:00000068",
      "uris" : [ "urn:miriam:matrixdb.association", "http://identifiers.org/matrixdb.association/", "http://identifiers.org/matrixdb.association", "https://identifiers.org/matrixdb.association/", "https://identifiers.org/matrixdb.association" ]
    },
    "MEDLINEPLUS" : {
      "commonName" : "MedlinePlus",
      "homepage" : "http://www.nlm.nih.gov/medlineplus/",
      "registryIdentifier" : "MIR:00000476",
      "uris" : [ "urn:miriam:medlineplus", "http://identifiers.org/medlineplus/", "http://identifiers.org/medlineplus", "https://identifiers.org/medlineplus/", "https://identifiers.org/medlineplus" ]
    },
    "MEROPS" : {
      "commonName" : "MEROPS",
      "homepage" : "http://merops.sanger.ac.uk/index.htm",
      "registryIdentifier" : "MIR:00000059",
      "uris" : [ "urn:miriam:merops", "http://identifiers.org/merops/", "http://identifiers.org/merops", "https://identifiers.org/merops/", "https://identifiers.org/merops" ]
    },
    "MEROPS_FAMILY" : {
      "commonName" : "MEROPS Family",
      "homepage" : "http://merops.sanger.ac.uk/index.htm",
      "registryIdentifier" : "MIR:00000302",
      "uris" : [ "urn:miriam:merops.family", "http://identifiers.org/merops.family/", "http://identifiers.org/merops.family", "https://identifiers.org/merops.family/", "https://identifiers.org/merops.family" ]
    },
    "MEROPS_INHIBITOR" : {
      "commonName" : "MEROPS Inhibitor",
      "homepage" : "http://merops.sanger.ac.uk/index.htm",
      "registryIdentifier" : "MIR:00000491",
      "uris" : [ "urn:miriam:merops.inhibitor", "http://identifiers.org/merops.inhibitor/", "http://identifiers.org/merops.inhibitor", "https://identifiers.org/merops.inhibitor/", "https://identifiers.org/merops.inhibitor" ]
    },
    "MESH_2012" : {
      "commonName" : "MeSH",
      "homepage" : "http://www.nlm.nih.gov/mesh/",
      "registryIdentifier" : "MIR:00000560",
      "uris" : [ "urn:miriam:mesh", "urn:miriam:mesh.2012", "urn:miriam:mesh.2013", "http://identifiers.org/mesh/", "http://identifiers.org/mesh", "https://identifiers.org/mesh/", "https://identifiers.org/mesh" ]
    },
    "METABOLIGHTS" : {
      "commonName" : "MetaboLights",
      "homepage" : "https://www.ebi.ac.uk/metabolights/",
      "registryIdentifier" : "MIR:00000380",
      "uris" : [ "urn:miriam:metabolights", "http://identifiers.org/metabolights/", "http://identifiers.org/metabolights", "https://identifiers.org/metabolights/", "https://identifiers.org/metabolights" ]
    },
    "METANETX_CHEMICAL" : {
      "commonName" : "MetaNetX chemical",
      "homepage" : "https://www.metanetx.org/",
      "registryIdentifier" : "MIR:00000567",
      "uris" : [ "http://identifiers.org/metanetx.chemical/", "http://identifiers.org/metanetx.chemical", "https://identifiers.org/metanetx.chemical/", "https://identifiers.org/metanetx.chemical" ]
    },
    "METANETX_COMPARTMENT" : {
      "commonName" : "MetaNetX compartment",
      "homepage" : "https://www.metanetx.org/",
      "registryIdentifier" : "MIR:00000569",
      "uris" : [ "http://identifiers.org/metanetx.compartment/", "http://identifiers.org/metanetx.compartment", "https://identifiers.org/metanetx.compartment/", "https://identifiers.org/metanetx.compartment" ]
    },
    "METANETX_REACTION" : {
      "commonName" : "MetaNetX reaction",
      "homepage" : "https://www.metanetx.org/",
      "registryIdentifier" : "MIR:00000568",
      "uris" : [ "http://identifiers.org/metanetx.reaction/", "http://identifiers.org/metanetx.reaction", "https://identifiers.org/metanetx.reaction/", "https://identifiers.org/metanetx.reaction" ]
    },
    "METLIN" : {
      "commonName" : "METLIN",
      "homepage" : "http://masspec.scripps.edu/",
      "registryIdentifier" : "MIR:00000322",
      "uris" : [ "urn:miriam:metlin", "http://identifiers.org/metlin/", "http://identifiers.org/metlin", "https://identifiers.org/metlin/", "https://identifiers.org/metlin" ]
    },
    "MGD" : {
      "commonName" : "Mouse Genome Database",
      "homepage" : "http://www.informatics.jax.org/",
      "registryIdentifier" : "MIR:00000037",
      "uris" : [ "urn:miriam:mgd", "http://identifiers.org/mgi/", "http://identifiers.org/MGI", "https://identifiers.org/mgi/", "https://identifiers.org/MGI" ]
    },
    "MGED_ONTOLOGY" : {
      "commonName" : "MGED Ontology",
      "homepage" : "http://bioportal.bioontology.org/",
      "registryIdentifier" : "MIR:00000303",
      "uris" : [ "urn:miriam:mo", "http://identifiers.org/mo/", "http://identifiers.org/mo", "https://identifiers.org/mo/", "https://identifiers.org/mo" ]
    },
    "MGNIFY_PROJECT" : {
      "commonName" : "MGnify Project",
      "homepage" : "https://www.ebi.ac.uk/metagenomics",
      "registryIdentifier" : "MIR:00000535",
      "uris" : [ "urn:miriam:ebimetagenomics.proj", "http://identifiers.org/mgnify.proj/", "http://identifiers.org/mgnify.proj", "https://identifiers.org/mgnify.proj/", "https://identifiers.org/mgnify.proj" ]
    },
    "MGNIFY_SAMPLE" : {
      "commonName" : "MGnify Sample",
      "homepage" : "https://www.ebi.ac.uk/metagenomics",
      "registryIdentifier" : "MIR:00000510",
      "uris" : [ "urn:miriam:ebimetagenomics.samp", "urn:miriam:ebimetagenomics", "http://identifiers.org/mgnify.samp/", "http://identifiers.org/mgnify.samp", "https://identifiers.org/mgnify.samp/", "https://identifiers.org/mgnify.samp" ]
    },
    "MI" : {
      "commonName" : "Molecular Interactions Ontology",
      "homepage" : "https://www.ebi.ac.uk/ols/ontologies/mi",
      "registryIdentifier" : "MIR:00000109",
      "uris" : [ "urn:miriam:psimi", "urn:miriam:obo.mi", "http://identifiers.org/MI/", "http://identifiers.org/MI", "https://identifiers.org/MI/", "https://identifiers.org/MI" ]
    },
    "MICROBIAL_PROTEIN_INTERACTION_DATABASE" : {
      "commonName" : "Microbial Protein Interaction Database",
      "homepage" : "http://www.jcvi.org/mpidb/about.php",
      "registryIdentifier" : "MIR:00000124",
      "uris" : [ "urn:miriam:mpid", "http://identifiers.org/mpid/", "http://identifiers.org/mpid", "https://identifiers.org/mpid/", "https://identifiers.org/mpid" ]
    },
    "MICROSPORIDIADB" : {
      "commonName" : "MicrosporidiaDB",
      "homepage" : "http://microsporidiadb.org/micro/",
      "registryIdentifier" : "MIR:00000152",
      "uris" : [ "urn:miriam:microsporidia", "http://identifiers.org/microsporidia/", "http://identifiers.org/microsporidia", "https://identifiers.org/microsporidia/", "https://identifiers.org/microsporidia" ]
    },
    "MIMODB" : {
      "commonName" : "MimoDB",
      "homepage" : "http://immunet.cn/bdb/",
      "registryIdentifier" : "MIR:00000251",
      "uris" : [ "urn:miriam:mimodb", "http://identifiers.org/mimodb/", "http://identifiers.org/mimodb", "https://identifiers.org/mimodb/", "https://identifiers.org/mimodb" ]
    },
    "MINT" : {
      "commonName" : "MINT",
      "homepage" : "http://mint.bio.uniroma2.it/mint/",
      "registryIdentifier" : "MIR:00000042",
      "uris" : [ "urn:miriam:mint", "http://identifiers.org/mint/", "http://identifiers.org/mint", "https://identifiers.org/mint/", "https://identifiers.org/mint" ]
    },
    "MIPMODDB" : {
      "commonName" : "MIPModDB",
      "homepage" : "http://bioinfo.iitk.ac.in/MIPModDB",
      "registryIdentifier" : "MIR:00000256",
      "uris" : [ "urn:miriam:mipmod", "http://identifiers.org/mipmod/", "http://identifiers.org/mipmod", "https://identifiers.org/mipmod/", "https://identifiers.org/mipmod" ]
    },
    "MIREX" : {
      "commonName" : "mirEX",
      "homepage" : "http://comgen.pl/mirex/?page=home",
      "registryIdentifier" : "MIR:00000329",
      "uris" : [ "urn:miriam:mirex", "http://identifiers.org/mirex/", "http://identifiers.org/mirex", "https://identifiers.org/mirex/", "https://identifiers.org/mirex" ]
    },
    "MIRIAM_REGISTRY_COLLECTION" : {
      "commonName" : "MIRIAM Registry collection",
      "homepage" : "https://www.ebi.ac.uk/miriam/",
      "registryIdentifier" : "MIR:00000008",
      "uris" : [ "urn:miriam:miriam.collection", "urn:miriam:miriam", "urn:miriam:miriam.datatype", "http://identifiers.org/miriam.collection/", "http://identifiers.org/miriam.collection", "https://identifiers.org/miriam.collection/", "https://identifiers.org/miriam.collection" ]
    },
    "MIRIAM_REGISTRY_RESOURCE" : {
      "commonName" : "MIRIAM Registry resource",
      "homepage" : "https://www.ebi.ac.uk/miriam/",
      "registryIdentifier" : "MIR:00000188",
      "uris" : [ "urn:miriam:miriam.resource", "http://identifiers.org/miriam.resource/", "http://identifiers.org/miriam.resource", "https://identifiers.org/miriam.resource/", "https://identifiers.org/miriam.resource" ]
    },
    "MIRNEST" : {
      "commonName" : "miRNEST",
      "homepage" : "http://rhesus.amu.edu.pl/mirnest/copy/",
      "registryIdentifier" : "MIR:00000246",
      "uris" : [ "urn:miriam:mirnest", "http://identifiers.org/mirnest/", "http://identifiers.org/mirnest", "https://identifiers.org/mirnest/", "https://identifiers.org/mirnest" ]
    },
    "MIR_TAR_BASE_MATURE_SEQUENCE" : {
      "commonName" : "miRTarBase Mature Sequence Database",
      "homepage" : "http://mirtarbase.mbc.nctu.edu.tw/",
      "registryIdentifier" : "MIR:00000562",
      "uris" : [ "urn:miriam:mirtarbase", "http://identifiers.org/mirtarbase/", "http://identifiers.org/mirtarbase", "https://identifiers.org/mirtarbase/", "https://identifiers.org/mirtarbase" ]
    },
    "MI_R_BASE_MATURE_SEQUENCE" : {
      "commonName" : "miRBase Mature Sequence Database",
      "homepage" : "http://www.mirbase.org/",
      "registryIdentifier" : "MIR:00000235",
      "uris" : [ "urn:miriam:mirbase.mature", "http://identifiers.org/mirbase.mature/", "http://identifiers.org/mirbase.mature", "https://identifiers.org/mirbase.mature/", "https://identifiers.org/mirbase.mature" ]
    },
    "MI_R_BASE_SEQUENCE" : {
      "commonName" : "miRBase Sequence Database",
      "homepage" : "http://www.mirbase.org/",
      "registryIdentifier" : "MIR:00000078",
      "uris" : [ "urn:miriam:mirbase", "http://identifiers.org/mirbase/", "http://identifiers.org/mirbase", "https://identifiers.org/mirbase/", "https://identifiers.org/mirbase" ]
    },
    "MMRRC" : {
      "commonName" : "MMRRC",
      "homepage" : "http://www.mmrrc.org/",
      "registryIdentifier" : "MIR:00000324",
      "uris" : [ "urn:miriam:mmrrc", "http://identifiers.org/mmrrc/", "http://identifiers.org/mmrrc", "https://identifiers.org/mmrrc/", "https://identifiers.org/mmrrc" ]
    },
    "MOD" : {
      "commonName" : "Protein Modification Ontology",
      "homepage" : "https://bioportal.bioontology.org/ontologies/PSIMOD",
      "registryIdentifier" : "MIR:00000056",
      "uris" : [ "urn:miriam:obo.psi-mod", "urn:miriam:psimod", "urn:miriam:mod", "http://identifiers.org/mod/", "http://identifiers.org/psimod/", "http://identifiers.org/obo.psi-mod/", "http://identifiers.org/MOD", "https://identifiers.org/mod/", "https://identifiers.org/obo.psi-mod/", "https://identifiers.org/psimod/", "https://identifiers.org/MOD" ]
    },
    "MODELDB" : {
      "commonName" : "ModelDB",
      "homepage" : "http://senselab.med.yale.edu/ModelDB/",
      "registryIdentifier" : "MIR:00000131",
      "uris" : [ "urn:miriam:modeldb", "http://identifiers.org/modeldb/", "http://identifiers.org/modeldb", "https://identifiers.org/modeldb/", "https://identifiers.org/modeldb" ]
    },
    "MOLBASE" : {
      "commonName" : "Molbase",
      "homepage" : "http://www.molbase.com/",
      "registryIdentifier" : "MIR:00000458",
      "uris" : [ "urn:miriam:molbase", "http://identifiers.org/molbase/", "http://identifiers.org/molbase", "https://identifiers.org/molbase/", "https://identifiers.org/molbase" ]
    },
    "MOLECULAR_MODELING_DATABASE" : {
      "commonName" : "Molecular Modeling Database",
      "homepage" : "http://www.ncbi.nlm.nih.gov/sites/entrez?db=structure",
      "registryIdentifier" : "MIR:00000121",
      "uris" : [ "urn:miriam:mmdb", "http://identifiers.org/mmdb/", "http://identifiers.org/mmdb", "https://identifiers.org/mmdb/", "https://identifiers.org/mmdb" ]
    },
    "MOUSE_ADULT_GROSS_ANATOMY" : {
      "commonName" : "Mouse Adult Gross Anatomy",
      "homepage" : "http://bioportal.bioontology.org/ontologies/MA",
      "registryIdentifier" : "MIR:00000445",
      "uris" : [ "urn:miriam:ma", "http://identifiers.org/ma/", "http://identifiers.org/MA", "https://identifiers.org/ma/", "https://identifiers.org/MA" ]
    },
    "MYCOBANK" : {
      "commonName" : "MycoBank",
      "homepage" : "http://www.mycobank.org/",
      "registryIdentifier" : "MIR:00000178",
      "uris" : [ "urn:miriam:mycobank", "http://identifiers.org/mycobank/", "http://identifiers.org/mycobank", "https://identifiers.org/mycobank/", "https://identifiers.org/mycobank" ]
    },
    "MYCOBROWSER_LEPRAE" : {
      "commonName" : "MycoBrowser leprae",
      "homepage" : "http://mycobrowser.epfl.ch/leprosy.html",
      "registryIdentifier" : "MIR:00000217",
      "uris" : [ "urn:miriam:myco.lepra", "http://identifiers.org/myco.lepra/", "http://identifiers.org/myco.lepra", "https://identifiers.org/myco.lepra/", "https://identifiers.org/myco.lepra" ]
    },
    "MYCOBROWSER_MARINUM" : {
      "commonName" : "MycoBrowser marinum",
      "homepage" : "http://mycobrowser.epfl.ch/marinolist.html",
      "registryIdentifier" : "MIR:00000218",
      "uris" : [ "urn:miriam:myco.marinum", "http://identifiers.org/myco.marinum/", "http://identifiers.org/myco.marinum", "https://identifiers.org/myco.marinum/", "https://identifiers.org/myco.marinum" ]
    },
    "MYCOBROWSER_SMEGMATIS" : {
      "commonName" : "MycoBrowser smegmatis",
      "homepage" : "http://mycobrowser.epfl.ch/smegmalist.html",
      "registryIdentifier" : "MIR:00000219",
      "uris" : [ "urn:miriam:myco.smeg", "http://identifiers.org/myco.smeg/", "http://identifiers.org/myco.smeg", "https://identifiers.org/myco.smeg/", "https://identifiers.org/myco.smeg" ]
    },
    "MYCOBROWSER_TUBERCULOSIS" : {
      "commonName" : "MycoBrowser tuberculosis",
      "homepage" : "http://tuberculist.epfl.ch/",
      "registryIdentifier" : "MIR:00000216",
      "uris" : [ "urn:miriam:myco.tuber", "http://identifiers.org/myco.tuber/", "http://identifiers.org/myco.tuber", "https://identifiers.org/myco.tuber/", "https://identifiers.org/myco.tuber" ]
    },
    "NAPP" : {
      "commonName" : "NAPP",
      "homepage" : "http://napp.u-psud.fr/",
      "registryIdentifier" : "MIR:00000247",
      "uris" : [ "urn:miriam:napp", "http://identifiers.org/napp/", "http://identifiers.org/napp", "https://identifiers.org/napp/", "https://identifiers.org/napp" ]
    },
    "NARCIS" : {
      "commonName" : "NARCIS",
      "homepage" : "http://www.narcis.nl/?Language=en",
      "registryIdentifier" : "MIR:00000240",
      "uris" : [ "urn:miriam:narcis", "http://identifiers.org/narcis/", "http://identifiers.org/narcis", "https://identifiers.org/narcis/", "https://identifiers.org/narcis" ]
    },
    "NASC_CODE" : {
      "commonName" : "NASC code",
      "homepage" : "http://arabidopsis.info/",
      "registryIdentifier" : "MIR:00000304",
      "uris" : [ "urn:miriam:nasc", "http://identifiers.org/nasc/", "http://identifiers.org/nasc", "https://identifiers.org/nasc/", "https://identifiers.org/nasc" ]
    },
    "NATIONAL_BIBLIOGRAPHY_NUMBER" : {
      "commonName" : "National Bibliography Number",
      "homepage" : "http://nbn-resolving.org/resolve_urn.htm",
      "registryIdentifier" : "MIR:00000381",
      "uris" : [ "urn:miriam:nbn", "http://identifiers.org/nbn/", "http://identifiers.org/nbn", "https://identifiers.org/nbn/", "https://identifiers.org/nbn" ]
    },
    "NATIONAL_DRUG_CODE" : {
      "commonName" : "National Drug Code",
      "homepage" : "http://www.accessdata.fda.gov/scripts/cder/ndc/",
      "registryIdentifier" : "MIR:00000431",
      "uris" : [ "urn:miriam:ndc", "http://identifiers.org/ndc/", "http://identifiers.org/ndc", "https://identifiers.org/ndc/", "https://identifiers.org/ndc" ]
    },
    "NCBI_PROTEIN" : {
      "commonName" : "NCBI Protein",
      "homepage" : "https://www.ncbi.nlm.nih.gov/protein",
      "registryIdentifier" : "MIR:00000344",
      "uris" : [ "urn:miriam:ncbiprotein", "http://identifiers.org/ncbiprotein/", "http://identifiers.org/ncbiprotein", "https://identifiers.org/ncbiprotein/", "https://identifiers.org/ncbiprotein" ]
    },
    "NCIM" : {
      "commonName" : "NCIm",
      "homepage" : "http://ncim.nci.nih.gov/",
      "registryIdentifier" : "MIR:00000353",
      "uris" : [ "urn:miriam:ncim", "http://identifiers.org/ncim/", "http://identifiers.org/ncim", "https://identifiers.org/ncim/", "https://identifiers.org/ncim" ]
    },
    "NCIT" : {
      "commonName" : "NCIt",
      "homepage" : "http://ncit.nci.nih.gov/",
      "registryIdentifier" : "MIR:00000139",
      "uris" : [ "urn:miriam:ncit", "http://identifiers.org/ncit/", "http://identifiers.org/ncit", "https://identifiers.org/ncit/", "https://identifiers.org/ncit" ]
    },
    "NCI_PATHWAY_INTERACTION_DATABASE_PATHWAY" : {
      "commonName" : "NCI Pathway Interaction Database: Pathway",
      "homepage" : "http://pid.nci.nih.gov/",
      "registryIdentifier" : "MIR:00000133",
      "uris" : [ "urn:miriam:pid.pathway", "http://identifiers.org/pid.pathway/", "http://identifiers.org/pid.pathway", "https://identifiers.org/pid.pathway/", "https://identifiers.org/pid.pathway" ]
    },
    "NEUROLEX" : {
      "commonName" : "NeuroLex",
      "homepage" : "http://www.neurolex.org/wiki/Main_Page",
      "registryIdentifier" : "MIR:00000126",
      "uris" : [ "urn:miriam:neurolex", "http://identifiers.org/neurolex/", "http://identifiers.org/neurolex", "https://identifiers.org/neurolex/", "https://identifiers.org/neurolex" ]
    },
    "NEUROMORPHO" : {
      "commonName" : "NeuroMorpho",
      "homepage" : "http://neuromorpho.org/index.jsp",
      "registryIdentifier" : "MIR:00000095",
      "uris" : [ "urn:miriam:neuromorpho", "http://identifiers.org/neuromorpho/", "http://identifiers.org/neuromorpho", "https://identifiers.org/neuromorpho/", "https://identifiers.org/neuromorpho" ]
    },
    "NEURONDB" : {
      "commonName" : "NeuronDB",
      "homepage" : "http://senselab.med.yale.edu/NeuronDB/",
      "registryIdentifier" : "MIR:00000094",
      "uris" : [ "urn:miriam:neurondb", "http://identifiers.org/neurondb/", "http://identifiers.org/neurondb", "https://identifiers.org/neurondb/", "https://identifiers.org/neurondb" ]
    },
    "NEXTDB" : {
      "commonName" : "NEXTDB",
      "homepage" : "http://nematode.lab.nig.ac.jp/",
      "registryIdentifier" : "MIR:00000289",
      "uris" : [ "urn:miriam:nextdb", "http://identifiers.org/nextdb/", "http://identifiers.org/nextdb", "https://identifiers.org/nextdb/", "https://identifiers.org/nextdb" ]
    },
    "NEXTPROT" : {
      "commonName" : "nextProt",
      "homepage" : "https://www.nextprot.org/",
      "registryIdentifier" : "MIR:00000236",
      "uris" : [ "urn:miriam:nextprot", "http://identifiers.org/nextprot/", "http://identifiers.org/nextprot", "https://identifiers.org/nextprot/", "https://identifiers.org/nextprot" ]
    },
    "NIAEST" : {
      "commonName" : "NIAEST",
      "homepage" : "http://lgsun.grc.nia.nih.gov/cDNA/",
      "registryIdentifier" : "MIR:00000305",
      "uris" : [ "urn:miriam:niaest", "http://identifiers.org/niaest/", "http://identifiers.org/niaest", "https://identifiers.org/niaest/", "https://identifiers.org/niaest" ]
    },
    "NITE_BIOLOGICAL_RESEARCH_CENTER_CATALOGUE" : {
      "commonName" : "NITE Biological Research Center Catalogue",
      "homepage" : "http://www.nbrc.nite.go.jp/e/index.html",
      "registryIdentifier" : "MIR:00000179",
      "uris" : [ "urn:miriam:nbrc", "http://identifiers.org/nbrc/", "http://identifiers.org/nbrc", "https://identifiers.org/nbrc/", "https://identifiers.org/nbrc" ]
    },
    "NONCODE_V3" : {
      "commonName" : "NONCODE v3",
      "homepage" : "http://www.noncode.org/",
      "registryIdentifier" : "MIR:00000248",
      "uris" : [ "urn:miriam:noncodev3", "urn:miriam:noncode", "http://identifiers.org/noncodev3/", "http://identifiers.org/noncodev3", "https://identifiers.org/noncodev3/", "https://identifiers.org/noncodev3" ]
    },
    "NONCODE_V4_GENE" : {
      "commonName" : "NONCODE v4 Gene",
      "homepage" : "http://www.bioinfo.org/NONCODEv4/",
      "registryIdentifier" : "MIR:00000480",
      "uris" : [ "urn:miriam:noncodev4.gene", "http://identifiers.org/noncodev4.gene/", "http://identifiers.org/noncodev4.gene", "https://identifiers.org/noncodev4.gene/", "https://identifiers.org/noncodev4.gene" ]
    },
    "NONCODE_V4_TRANSCRIPT" : {
      "commonName" : "NONCODE v4 Transcript",
      "homepage" : "http://www.bioinfo.org/NONCODEv4/",
      "registryIdentifier" : "MIR:00000481",
      "uris" : [ "urn:miriam:noncodev4.rna", "http://identifiers.org/noncodev4.rna/", "http://identifiers.org/noncodev4.rna", "https://identifiers.org/noncodev4.rna/", "https://identifiers.org/noncodev4.rna" ]
    },
    "NORINE" : {
      "commonName" : "NORINE",
      "homepage" : "http://bioinfo.lifl.fr/norine/",
      "registryIdentifier" : "MIR:00000498",
      "uris" : [ "urn:miriam:norine", "http://identifiers.org/norine/", "http://identifiers.org/norine", "https://identifiers.org/norine/", "https://identifiers.org/norine" ]
    },
    "NUCLEARDB" : {
      "commonName" : "NucleaRDB",
      "homepage" : "http://www.receptors.org/nucleardb/",
      "registryIdentifier" : "MIR:00000356",
      "uris" : [ "urn:miriam:nuclearbd", "http://identifiers.org/nuclearbd/", "http://identifiers.org/nuclearbd", "https://identifiers.org/nuclearbd/", "https://identifiers.org/nuclearbd" ]
    },
    "NUCLEOTIDE_SEQUENCE_DATABASE" : {
      "commonName" : "Nucleotide Sequence Database",
      "homepage" : "https://www.ncbi.nlm.nih.gov/Genbank/",
      "registryIdentifier" : "MIR:00000029",
      "uris" : [ "urn:miriam:insdc", "http://identifiers.org/insdc/", "http://identifiers.org/insdc", "https://identifiers.org/insdc/", "https://identifiers.org/insdc" ]
    },
    "OBI" : {
      "commonName" : "Ontology for Biomedical Investigations",
      "homepage" : "https://www.ebi.ac.uk/ols/ontologies/obi/",
      "registryIdentifier" : "MIR:00000127",
      "uris" : [ "urn:miriam:obi", "urn:miriam:obo.obi", "http://identifiers.org/obi/", "http://identifiers.org/obi", "https://identifiers.org/obi/", "https://identifiers.org/obi" ]
    },
    "ODOR_MOLECULES_DATABASE" : {
      "commonName" : "Odor Molecules DataBase",
      "homepage" : "http://senselab.med.yale.edu/OdorDB",
      "registryIdentifier" : "MIR:00000500",
      "uris" : [ "urn:miriam:odor", "http://identifiers.org/odor/", "http://identifiers.org/odor", "https://identifiers.org/odor/", "https://identifiers.org/odor" ]
    },
    "OLFACTORY_RECEPTOR_DATABASE" : {
      "commonName" : "Olfactory Receptor Database",
      "homepage" : "http://senselab.med.yale.edu/OrDB/",
      "registryIdentifier" : "MIR:00000499",
      "uris" : [ "urn:miriam:ordb", "http://identifiers.org/ordb/", "http://identifiers.org/ordb", "https://identifiers.org/ordb/", "https://identifiers.org/ordb" ]
    },
    "OMA_GROUP" : {
      "commonName" : "OMA Group",
      "homepage" : "https://omabrowser.org/cgi-bin/gateway.pl",
      "registryIdentifier" : "MIR:00000343",
      "uris" : [ "urn:miriam:oma.grp", "http://identifiers.org/oma.grp/", "http://identifiers.org/oma.grp", "https://identifiers.org/oma.grp/", "https://identifiers.org/oma.grp" ]
    },
    "OMA_PROTEIN" : {
      "commonName" : "OMA Protein",
      "homepage" : "https://omabrowser.org/cgi-bin/gateway.pl",
      "registryIdentifier" : "MIR:00000342",
      "uris" : [ "urn:miriam:oma.protein", "http://identifiers.org/oma.protein/", "http://identifiers.org/oma.protein", "https://identifiers.org/oma.protein/", "https://identifiers.org/oma.protein" ]
    },
    "OMIA" : {
      "commonName" : "OMIA",
      "homepage" : "http://omia.angis.org.au/",
      "registryIdentifier" : "MIR:00000142",
      "uris" : [ "urn:miriam:omia", "http://identifiers.org/omia/", "http://identifiers.org/omia", "https://identifiers.org/omia/", "https://identifiers.org/omia" ]
    },
    "OMIM" : {
      "commonName" : "Online Mendelian Inheritance in Man",
      "homepage" : "http://omim.org/",
      "registryIdentifier" : "MIR:00000016",
      "uris" : [ "urn:miriam:omim", "http://identifiers.org/mim/", "http://identifiers.org/mim", "https://identifiers.org/mim/", "https://identifiers.org/mim" ]
    },
    "OMIT" : {
      "commonName" : "OMIT",
      "homepage" : "https://www.ebi.ac.uk/ols/ontologies/omit/",
      "registryIdentifier" : "MIR:00000605",
      "uris" : [ "http://identifiers.org/omit/", "http://identifiers.org/omit", "https://identifiers.org/omit/", "https://identifiers.org/omit" ]
    },
    "ONTOLOGY_OF_PHYSICS_FOR_BIOLOGY" : {
      "commonName" : "Ontology of Physics for Biology",
      "homepage" : "http://bioportal.bioontology.org/ontologies/OPB",
      "registryIdentifier" : "MIR:00000129",
      "uris" : [ "urn:miriam:opb", "http://identifiers.org/opb/", "http://identifiers.org/opb", "https://identifiers.org/opb/", "https://identifiers.org/opb" ]
    },
    "OPM" : {
      "commonName" : "OPM",
      "homepage" : "http://opm.phar.umich.edu/",
      "registryIdentifier" : "MIR:00000333",
      "uris" : [ "urn:miriam:opm", "http://identifiers.org/opm/", "http://identifiers.org/opm", "https://identifiers.org/opm/", "https://identifiers.org/opm" ]
    },
    "ORCID" : {
      "commonName" : "ORCID",
      "homepage" : "https://orcid.org",
      "registryIdentifier" : "MIR:00000382",
      "uris" : [ "urn:miriam:orcid", "http://identifiers.org/orcid/", "http://identifiers.org/orcid", "https://identifiers.org/orcid/", "https://identifiers.org/orcid" ]
    },
    "ORIDB_SACCHAROMYCES" : {
      "commonName" : "OriDB Saccharomyces",
      "homepage" : "http://cerevisiae.oridb.org/index.php",
      "registryIdentifier" : "MIR:00000369",
      "uris" : [ "urn:miriam:oridb.sacch", "http://identifiers.org/oridb.sacch/", "http://identifiers.org/oridb.sacch", "https://identifiers.org/oridb.sacch/", "https://identifiers.org/oridb.sacch" ]
    },
    "ORIDB_SCHIZOSACCHAROMYCES" : {
      "commonName" : "OriDB Schizosaccharomyces",
      "homepage" : "http://pombe.oridb.org/index.php",
      "registryIdentifier" : "MIR:00000368",
      "uris" : [ "urn:miriam:oridb.schizo", "http://identifiers.org/oridb.schizo/", "http://identifiers.org/oridb.schizo", "https://identifiers.org/oridb.schizo/", "https://identifiers.org/oridb.schizo" ]
    },
    "ORPHANET" : {
      "commonName" : "Orphanet",
      "homepage" : "http://www.orpha.net/consor/",
      "registryIdentifier" : "MIR:00000220",
      "uris" : [ "urn:miriam:orphanet", "http://identifiers.org/orphanet/", "http://identifiers.org/orphanet", "https://identifiers.org/orphanet/", "https://identifiers.org/orphanet" ]
    },
    "ORPHANET_RARE_DISEASE_ONTOLOGY" : {
      "commonName" : "Orphanet Rare Disease Ontology",
      "homepage" : "https://www.ebi.ac.uk/ols/ontologies/ordo",
      "registryIdentifier" : "MIR:00000532",
      "uris" : [ "urn:miriam:orphanet.ordo", "http://identifiers.org/orphanet.ordo/", "http://identifiers.org/orphanet.ordo", "https://identifiers.org/orphanet.ordo/", "https://identifiers.org/orphanet.ordo" ]
    },
    "ORTHODB" : {
      "commonName" : "OrthoDB",
      "homepage" : "http://cegg.unige.ch/orthodb4",
      "registryIdentifier" : "MIR:00000221",
      "uris" : [ "urn:miriam:orthodb", "http://identifiers.org/orthodb/", "http://identifiers.org/orthodb", "https://identifiers.org/orthodb/", "https://identifiers.org/orthodb" ]
    },
    "ORYZABASE_GENE" : {
      "commonName" : "Oryzabase Gene",
      "homepage" : "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/",
      "registryIdentifier" : "MIR:00000482",
      "uris" : [ "urn:miriam:oryzabase.gene", "http://identifiers.org/oryzabase.gene/", "http://identifiers.org/oryzabase.gene", "https://identifiers.org/oryzabase.gene/", "https://identifiers.org/oryzabase.gene" ]
    },
    "ORYZABASE_MUTANT" : {
      "commonName" : "Oryzabase Mutant",
      "homepage" : "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/",
      "registryIdentifier" : "MIR:00000483",
      "uris" : [ "urn:miriam:oryzabase.mutant", "http://identifiers.org/oryzabase.mutant/", "http://identifiers.org/oryzabase.mutant", "https://identifiers.org/oryzabase.mutant/", "https://identifiers.org/oryzabase.mutant" ]
    },
    "ORYZABASE_STAGE" : {
      "commonName" : "Oryzabase Stage",
      "homepage" : "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/",
      "registryIdentifier" : "MIR:00000485",
      "uris" : [ "urn:miriam:oryzabase.stage", "http://identifiers.org/oryzabase.stage/", "http://identifiers.org/oryzabase.stage", "https://identifiers.org/oryzabase.stage/", "https://identifiers.org/oryzabase.stage" ]
    },
    "ORYZABASE_STRAIN" : {
      "commonName" : "Oryzabase Strain",
      "homepage" : "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/",
      "registryIdentifier" : "MIR:00000484",
      "uris" : [ "urn:miriam:oryzabase.strain", "http://identifiers.org/oryzabase.strain/", "http://identifiers.org/oryzabase.strain", "https://identifiers.org/oryzabase.strain/", "https://identifiers.org/oryzabase.strain" ]
    },
    "ORYZA_TAG_LINE" : {
      "commonName" : "Oryza Tag Line",
      "homepage" : "http://oryzatagline.cirad.fr/",
      "registryIdentifier" : "MIR:00000486",
      "uris" : [ "urn:miriam:otl", "http://identifiers.org/otl/", "http://identifiers.org/otl", "https://identifiers.org/otl/", "https://identifiers.org/otl" ]
    },
    "P3DB_PROTEIN" : {
      "commonName" : "P3DB Protein",
      "homepage" : "http://www.p3db.org/",
      "registryIdentifier" : "MIR:00000501",
      "uris" : [ "urn:miriam:p3db.protein", "http://identifiers.org/p3db.protein/", "http://identifiers.org/p3db.protein", "https://identifiers.org/p3db.protein/", "https://identifiers.org/p3db.protein" ]
    },
    "P3DB_SITE" : {
      "commonName" : "P3DB Site",
      "homepage" : "http://www.p3db.org/",
      "registryIdentifier" : "MIR:00000502",
      "uris" : [ "urn:miriam:p3db.site", "http://identifiers.org/p3db.site/", "http://identifiers.org/p3db.site", "https://identifiers.org/p3db.site/", "https://identifiers.org/p3db.site" ]
    },
    "PALEODB" : {
      "commonName" : "PaleoDB",
      "homepage" : "http://paleodb.org/",
      "registryIdentifier" : "MIR:00000197",
      "uris" : [ "urn:miriam:paleodb", "http://identifiers.org/paleodb/", "http://identifiers.org/paleodb", "https://identifiers.org/paleodb/", "https://identifiers.org/paleodb" ]
    },
    "PANTHER" : {
      "commonName" : "PANTHER Family",
      "homepage" : "http://www.pantherdb.org/",
      "registryIdentifier" : "MIR:00000060",
      "uris" : [ "urn:miriam:panther.family", "urn:miriam:panther", "http://identifiers.org/panther.family/", "http://identifiers.org/panther.family", "https://identifiers.org/panther.family/", "https://identifiers.org/panther.family" ]
    },
    "PANTHER_NODE" : {
      "commonName" : "PANTHER Node",
      "homepage" : "http://pantree.org/",
      "registryIdentifier" : "MIR:00000374",
      "uris" : [ "urn:miriam:panther.node", "http://identifiers.org/panther.node/", "http://identifiers.org/panther.node", "https://identifiers.org/panther.node/", "https://identifiers.org/panther.node" ]
    },
    "PANTHER_PATHWAY" : {
      "commonName" : "PANTHER Pathway",
      "homepage" : "http://www.pantherdb.org/",
      "registryIdentifier" : "MIR:00000363",
      "uris" : [ "urn:miriam:panther.pathway", "http://identifiers.org/panther.pathway/", "http://identifiers.org/panther.pathway", "https://identifiers.org/panther.pathway/", "https://identifiers.org/panther.pathway" ]
    },
    "PANTHER_PATHWAY_COMPONENT" : {
      "commonName" : "PANTHER Pathway Component",
      "homepage" : "http://www.pantherdb.org/",
      "registryIdentifier" : "MIR:00000422",
      "uris" : [ "urn:miriam:panther.pthcmp", "http://identifiers.org/panther.pthcmp/", "http://identifiers.org/panther.pthcmp", "https://identifiers.org/panther.pthcmp/", "https://identifiers.org/panther.pthcmp" ]
    },
    "PASS2" : {
      "commonName" : "PASS2",
      "homepage" : "http://caps.ncbs.res.in/pass2/",
      "registryIdentifier" : "MIR:00000468",
      "uris" : [ "urn:miriam:pass2", "http://identifiers.org/pass2/", "http://identifiers.org/pass2", "https://identifiers.org/pass2/", "https://identifiers.org/pass2" ]
    },
    "PATHWAY_COMMONS" : {
      "commonName" : "Pathway Commons",
      "homepage" : "http://www.pathwaycommons.org/pc/",
      "registryIdentifier" : "MIR:00000073",
      "uris" : [ "urn:miriam:pathwaycommons", "http://identifiers.org/pathwaycommons/", "http://identifiers.org/pathwaycommons", "https://identifiers.org/pathwaycommons/", "https://identifiers.org/pathwaycommons" ]
    },
    "PATHWAY_ONTOLOGY" : {
      "commonName" : "Pathway Ontology",
      "homepage" : "http://rgd.mcw.edu/rgdweb/ontology/search.html",
      "registryIdentifier" : "MIR:00000242",
      "uris" : [ "urn:miriam:pw", "urn:miriam:obo.pw", "http://identifiers.org/pw/", "http://identifiers.org/PW", "https://identifiers.org/pw/", "https://identifiers.org/PW" ]
    },
    "PATO" : {
      "commonName" : "PATO",
      "homepage" : "https://www.ebi.ac.uk/ols/ontologies/pato",
      "registryIdentifier" : "MIR:00000112",
      "uris" : [ "urn:miriam:pato", "urn:miriam:obo.pato", "http://identifiers.org/pato/", "http://identifiers.org/PATO", "https://identifiers.org/pato/", "https://identifiers.org/PATO" ]
    },
    "PAXDB_ORGANISM" : {
      "commonName" : "PaxDb Organism",
      "homepage" : "http://pax-db.org/",
      "registryIdentifier" : "MIR:00000488",
      "uris" : [ "urn:miriam:paxdb.organism", "http://identifiers.org/paxdb.organism/", "http://identifiers.org/paxdb.organism", "https://identifiers.org/paxdb.organism/", "https://identifiers.org/paxdb.organism" ]
    },
    "PAXDB_PROTEIN" : {
      "commonName" : "PaxDb Protein",
      "homepage" : "http://pax-db.org/",
      "registryIdentifier" : "MIR:00000489",
      "uris" : [ "urn:miriam:paxdb.protein", "http://identifiers.org/paxdb.protein/", "http://identifiers.org/paxdb.protein", "https://identifiers.org/paxdb.protein/", "https://identifiers.org/paxdb.protein" ]
    },
    "PAZAR_TRANSCRIPTION_FACTOR" : {
      "commonName" : "Pazar Transcription Factor",
      "homepage" : "http://www.pazar.info/",
      "registryIdentifier" : "MIR:00000306",
      "uris" : [ "urn:miriam:pazar", "http://identifiers.org/pazar/", "http://identifiers.org/pazar", "https://identifiers.org/pazar/", "https://identifiers.org/pazar" ]
    },
    "PDB" : {
      "commonName" : "Protein Data Bank",
      "homepage" : "http://www.pdbe.org/",
      "registryIdentifier" : "MIR:00000020",
      "uris" : [ "urn:miriam:pdb", "http://identifiers.org/pdb/", "http://identifiers.org/pdb", "https://identifiers.org/pdb/", "https://identifiers.org/pdb" ]
    },
    "PDB_CCD" : {
      "commonName" : "Chemical Component Dictionary",
      "homepage" : "https://www.ebi.ac.uk/pdbe-srv/pdbechem/",
      "registryIdentifier" : "MIR:00000113",
      "uris" : [ "urn:miriam:pdb-ccd", "http://identifiers.org/pdb-ccd/", "http://identifiers.org/pdb-ccd", "https://identifiers.org/pdb-ccd/", "https://identifiers.org/pdb-ccd" ]
    },
    "PEPTIDEATLAS" : {
      "commonName" : "PeptideAtlas",
      "homepage" : "http://www.peptideatlas.org/",
      "registryIdentifier" : "MIR:00000053",
      "uris" : [ "urn:miriam:peptideatlas", "http://identifiers.org/peptideatlas/", "http://identifiers.org/peptideatlas", "https://identifiers.org/peptideatlas/", "https://identifiers.org/peptideatlas" ]
    },
    "PEROXIBASE" : {
      "commonName" : "Peroxibase",
      "homepage" : "http://peroxibase.toulouse.inra.fr/",
      "registryIdentifier" : "MIR:00000222",
      "uris" : [ "urn:miriam:peroxibase", "http://identifiers.org/peroxibase/", "http://identifiers.org/peroxibase", "https://identifiers.org/peroxibase/", "https://identifiers.org/peroxibase" ]
    },
    "PFAM" : {
      "commonName" : "Protein Family Database",
      "homepage" : "http://pfam.xfam.org/",
      "registryIdentifier" : "MIR:00000028",
      "uris" : [ "urn:miriam:pfam", "http://identifiers.org/pfam/", "http://identifiers.org/pfam", "https://identifiers.org/pfam/", "https://identifiers.org/pfam" ]
    },
    "PHARM" : {
      "commonName" : "PharmGKB Pathways",
      "homepage" : "http://www.pharmgkb.org/",
      "registryIdentifier" : "MIR:00000089",
      "uris" : [ "urn:miriam:pharmgkb.pathways", "http://identifiers.org/pharmgkb.pathways/", "http://identifiers.org/pharmgkb.pathways", "https://identifiers.org/pharmgkb.pathways/", "https://identifiers.org/pharmgkb.pathways" ]
    },
    "PHARMGKB_DISEASE" : {
      "commonName" : "PharmGKB Disease",
      "homepage" : "http://www.pharmgkb.org/",
      "registryIdentifier" : "MIR:00000090",
      "uris" : [ "urn:miriam:pharmgkb.disease", "http://identifiers.org/pharmgkb.disease/", "http://identifiers.org/pharmgkb.disease", "https://identifiers.org/pharmgkb.disease/", "https://identifiers.org/pharmgkb.disease" ]
    },
    "PHARMGKB_DRUG" : {
      "commonName" : "PharmGKB Drug",
      "homepage" : "http://www.pharmgkb.org/",
      "registryIdentifier" : "MIR:00000091",
      "uris" : [ "urn:miriam:pharmgkb.drug", "http://identifiers.org/pharmgkb.drug/", "http://identifiers.org/pharmgkb.drug", "https://identifiers.org/pharmgkb.drug/", "https://identifiers.org/pharmgkb.drug" ]
    },
    "PHARMGKB_GENE" : {
      "commonName" : "PharmGKB Gene",
      "homepage" : "http://www.pharmgkb.org/",
      "registryIdentifier" : "MIR:00000245",
      "uris" : [ "urn:miriam:pharmgkb.gene", "http://identifiers.org/pharmgkb.gene/", "http://identifiers.org/pharmgkb.gene", "https://identifiers.org/pharmgkb.gene/", "https://identifiers.org/pharmgkb.gene" ]
    },
    "PHENOL_EXPLORER" : {
      "commonName" : "Phenol-Explorer",
      "homepage" : "http://www.phenol-explorer.eu/foods/",
      "registryIdentifier" : "MIR:00000268",
      "uris" : [ "urn:miriam:phenolexplorer", "http://identifiers.org/phenolexplorer/", "http://identifiers.org/phenolexplorer", "https://identifiers.org/phenolexplorer/", "https://identifiers.org/phenolexplorer" ]
    },
    "PHOSPHOPOINT_KINASE" : {
      "commonName" : "PhosphoPoint Kinase",
      "homepage" : "http://kinase.bioinformatics.tw/",
      "registryIdentifier" : "MIR:00000385",
      "uris" : [ "urn:miriam:phosphopoint.kinase", "http://identifiers.org/phosphopoint.kinase/", "http://identifiers.org/phosphopoint.kinase", "https://identifiers.org/phosphopoint.kinase/", "https://identifiers.org/phosphopoint.kinase" ]
    },
    "PHOSPHOPOINT_PHOSPHOPROTEIN" : {
      "commonName" : "PhosphoPoint Phosphoprotein",
      "homepage" : "http://kinase.bioinformatics.tw/",
      "registryIdentifier" : "MIR:00000386",
      "uris" : [ "urn:miriam:phosphopoint.protein", "http://identifiers.org/phosphopoint.protein/", "http://identifiers.org/phosphopoint.protein", "https://identifiers.org/phosphopoint.protein/", "https://identifiers.org/phosphopoint.protein" ]
    },
    "PHOSPHOSITE_PROTEIN" : {
      "commonName" : "PhosphoSite Protein",
      "homepage" : "http://www.phosphosite.org/homeAction.do",
      "registryIdentifier" : "MIR:00000105",
      "uris" : [ "urn:miriam:phosphosite.protein", "urn:miriam:phosphosite", "http://identifiers.org/phosphosite.protein/", "http://identifiers.org/phosphosite.protein", "https://identifiers.org/phosphosite.protein/", "https://identifiers.org/phosphosite.protein" ]
    },
    "PHOSPHOSITE_RESIDUE" : {
      "commonName" : "PhosphoSite Residue",
      "homepage" : "http://www.phosphosite.org/homeAction.do",
      "registryIdentifier" : "MIR:00000125",
      "uris" : [ "urn:miriam:phosphosite.residue", "http://identifiers.org/phosphosite.residue/", "http://identifiers.org/phosphosite.residue", "https://identifiers.org/phosphosite.residue/", "https://identifiers.org/phosphosite.residue" ]
    },
    "PHYLOMEDB" : {
      "commonName" : "PhylomeDB",
      "homepage" : "http://phylomedb.org/",
      "registryIdentifier" : "MIR:00000223",
      "uris" : [ "urn:miriam:phylomedb", "http://identifiers.org/phylomedb/", "http://identifiers.org/phylomedb", "https://identifiers.org/phylomedb/", "https://identifiers.org/phylomedb" ]
    },
    "PHYTOZOME_LOCUS" : {
      "commonName" : "Phytozome Locus",
      "homepage" : "http://www.phytozome.net/",
      "registryIdentifier" : "MIR:00000432",
      "uris" : [ "urn:miriam:phytozome.locus", "http://identifiers.org/phytozome.locus/", "http://identifiers.org/phytozome.locus", "https://identifiers.org/phytozome.locus/", "https://identifiers.org/phytozome.locus" ]
    },
    "PINA" : {
      "commonName" : "PINA",
      "homepage" : "http://cbg.garvan.unsw.edu.au/pina/",
      "registryIdentifier" : "MIR:00000359",
      "uris" : [ "urn:miriam:pina", "http://identifiers.org/pina/", "http://identifiers.org/pina", "https://identifiers.org/pina/", "https://identifiers.org/pina" ]
    },
    "PIROPLASMADB" : {
      "commonName" : "PiroplasmaDB",
      "homepage" : "http://piroplasmadb.org/",
      "registryIdentifier" : "MIR:00000351",
      "uris" : [ "urn:miriam:piroplasma", "http://identifiers.org/piroplasma/", "http://identifiers.org/piroplasma", "https://identifiers.org/piroplasma/", "https://identifiers.org/piroplasma" ]
    },
    "PIRSF" : {
      "commonName" : "PIRSF",
      "homepage" : "https://pir.georgetown.edu/",
      "registryIdentifier" : "MIR:00000017",
      "uris" : [ "urn:miriam:pirsf", "http://identifiers.org/pirsf/", "http://identifiers.org/pirsf", "https://identifiers.org/pirsf/", "https://identifiers.org/pirsf" ]
    },
    "PLANT_ONTOLOGY" : {
      "commonName" : "Plant Ontology",
      "homepage" : "http://www.plantontology.org/",
      "registryIdentifier" : "MIR:00000307",
      "uris" : [ "urn:miriam:po", "urn:miriam:obo.po", "http://identifiers.org/po/", "http://identifiers.org/PO", "https://identifiers.org/po/", "https://identifiers.org/PO" ]
    },
    "PLASMODB" : {
      "commonName" : "PlasmoDB",
      "homepage" : "http://plasmodb.org/plasmo/",
      "registryIdentifier" : "MIR:00000150",
      "uris" : [ "urn:miriam:plasmodb", "http://identifiers.org/plasmodb/", "http://identifiers.org/plasmodb", "https://identifiers.org/plasmodb/", "https://identifiers.org/plasmodb" ]
    },
    "PMC" : {
      "commonName" : "PMC International",
      "homepage" : "http://europepmc.org/",
      "registryIdentifier" : "MIR:00000147",
      "uris" : [ "urn:miriam:pmc", "http://identifiers.org/pmc/", "http://identifiers.org/pmc", "https://identifiers.org/pmc/", "https://identifiers.org/pmc" ]
    },
    "POCKETOME" : {
      "commonName" : "Pocketome",
      "homepage" : "http://www.pocketome.org/sfSearch.cgi?act=browseall",
      "registryIdentifier" : "MIR:00000400",
      "uris" : [ "urn:miriam:pocketome", "http://identifiers.org/pocketome/", "http://identifiers.org/pocketome", "https://identifiers.org/pocketome/", "https://identifiers.org/pocketome" ]
    },
    "POLBASE" : {
      "commonName" : "PolBase",
      "homepage" : "http://polbase.neb.com/",
      "registryIdentifier" : "MIR:00000355",
      "uris" : [ "urn:miriam:polbase", "http://identifiers.org/polbase/", "http://identifiers.org/polbase", "https://identifiers.org/polbase/", "https://identifiers.org/polbase" ]
    },
    "POMBASE" : {
      "commonName" : "PomBase",
      "homepage" : "http://www.pombase.org/",
      "registryIdentifier" : "MIR:00000335",
      "uris" : [ "urn:miriam:pombase", "http://identifiers.org/pombase/", "http://identifiers.org/pombase", "https://identifiers.org/pombase/", "https://identifiers.org/pombase" ]
    },
    "PRIDE" : {
      "commonName" : "PRIDE",
      "homepage" : "https://www.ebi.ac.uk/pride/",
      "registryIdentifier" : "MIR:00000065",
      "uris" : [ "urn:miriam:pride", "http://identifiers.org/pride/", "http://identifiers.org/pride", "https://identifiers.org/pride/", "https://identifiers.org/pride" ]
    },
    "PRIDE_PROJECT" : {
      "commonName" : "PRIDE Project",
      "homepage" : "https://www.ebi.ac.uk/pride/",
      "registryIdentifier" : "MIR:00000515",
      "uris" : [ "urn:miriam:pride.project", "http://identifiers.org/pride.project/", "http://identifiers.org/pride.project", "https://identifiers.org/pride.project/", "https://identifiers.org/pride.project" ]
    },
    "PRINTS" : {
      "commonName" : "PRINTS",
      "homepage" : "http://www.bioinf.manchester.ac.uk/dbbrowser/sprint/",
      "registryIdentifier" : "MIR:00000061",
      "uris" : [ "urn:miriam:sprint", "http://identifiers.org/prints/", "http://identifiers.org/prints", "https://identifiers.org/prints/", "https://identifiers.org/prints" ]
    },
    "PRODOM" : {
      "commonName" : "ProDom",
      "homepage" : "http://prodom.prabi.fr/prodom/current/html/home.php",
      "registryIdentifier" : "MIR:00000117",
      "uris" : [ "urn:miriam:prodom", "http://identifiers.org/prodom/", "http://identifiers.org/prodom", "https://identifiers.org/prodom/", "https://identifiers.org/prodom" ]
    },
    "PROGLYCPROT" : {
      "commonName" : "ProGlycProt",
      "homepage" : "http://www.proglycprot.org/",
      "registryIdentifier" : "MIR:00000354",
      "uris" : [ "urn:miriam:proglyc", "http://identifiers.org/proglyc/", "http://identifiers.org/proglyc", "https://identifiers.org/proglyc/", "https://identifiers.org/proglyc" ]
    },
    "PROSITE" : {
      "commonName" : "PROSITE",
      "homepage" : "https://www.expasy.org/prosite/",
      "registryIdentifier" : "MIR:00000032",
      "uris" : [ "urn:miriam:prosite", "http://identifiers.org/prosite/", "http://identifiers.org/prosite", "https://identifiers.org/prosite/", "https://identifiers.org/prosite" ]
    },
    "PROTCLUSTDB" : {
      "commonName" : "ProtClustDB",
      "homepage" : "https://www.ncbi.nlm.nih.gov/proteinclusters?db=proteinclusters",
      "registryIdentifier" : "MIR:00000226",
      "uris" : [ "urn:miriam:protclustdb", "http://identifiers.org/protclustdb/", "http://identifiers.org/protclustdb", "https://identifiers.org/protclustdb/", "https://identifiers.org/protclustdb" ]
    },
    "PROTEIN_AFFINITY_REAGENTS" : {
      "commonName" : "Protein Affinity Reagents",
      "homepage" : "https://www.ebi.ac.uk/ontology-lookup/browse.do?ontName=PAR",
      "registryIdentifier" : "MIR:00000533",
      "uris" : [ "urn:miriam:psipar", "http://identifiers.org/psipar/", "http://identifiers.org/psipar", "https://identifiers.org/psipar/", "https://identifiers.org/psipar" ]
    },
    "PROTEIN_DATA_BANK_LIGAND" : {
      "commonName" : "Protein Data Bank Ligand",
      "homepage" : "http://www.pdb.org/",
      "registryIdentifier" : "MIR:00000490",
      "uris" : [ "urn:miriam:pdb.ligand", "http://identifiers.org/pdb.ligand/", "http://identifiers.org/pdb.ligand", "https://identifiers.org/pdb.ligand/", "https://identifiers.org/pdb.ligand" ]
    },
    "PROTEIN_MODEL_DATABASE" : {
      "commonName" : "Protein Model Database",
      "homepage" : "https://bioinformatics.cineca.it/PMDB/",
      "registryIdentifier" : "MIR:00000190",
      "uris" : [ "urn:miriam:pmdb", "http://identifiers.org/pmdb/", "http://identifiers.org/pmdb", "https://identifiers.org/pmdb/", "https://identifiers.org/pmdb" ]
    },
    "PROTEIN_ONTOLOGY" : {
      "commonName" : "Protein Ontology",
      "homepage" : "https://proconsortium.org/",
      "registryIdentifier" : "MIR:00000141",
      "uris" : [ "urn:miriam:pr", "urn:miriam:obo.pr", "http://identifiers.org/pr/", "http://identifiers.org/PR", "https://identifiers.org/pr/", "https://identifiers.org/PR" ]
    },
    "PROTEOMICSDB_PEPTIDE" : {
      "commonName" : "ProteomicsDB Peptide",
      "homepage" : "https://www.proteomicsdb.org/#peptideSearch",
      "registryIdentifier" : "MIR:00000525",
      "uris" : [ "urn:miriam:proteomicsdb.peptide", "http://identifiers.org/proteomicsdb.peptide/", "http://identifiers.org/proteomicsdb.peptide", "https://identifiers.org/proteomicsdb.peptide/", "https://identifiers.org/proteomicsdb.peptide" ]
    },
    "PROTEOMICSDB_PROTEIN" : {
      "commonName" : "ProteomicsDB Protein",
      "homepage" : "https://www.proteomicsdb.org/#human",
      "registryIdentifier" : "MIR:00000524",
      "uris" : [ "urn:miriam:proteomicsdb.protein", "http://identifiers.org/proteomicsdb.protein/", "http://identifiers.org/proteomicsdb.protein", "https://identifiers.org/proteomicsdb.protein/", "https://identifiers.org/proteomicsdb.protein" ]
    },
    "PROTONET_CLUSTER" : {
      "commonName" : "ProtoNet Cluster",
      "homepage" : "http://www.protonet.cs.huji.ac.il/",
      "registryIdentifier" : "MIR:00000229",
      "uris" : [ "urn:miriam:protonet.cluster", "http://identifiers.org/protonet.cluster/", "http://identifiers.org/protonet.cluster", "https://identifiers.org/protonet.cluster/", "https://identifiers.org/protonet.cluster" ]
    },
    "PROTONET_PROTEINCARD" : {
      "commonName" : "ProtoNet ProteinCard",
      "homepage" : "http://www.protonet.cs.huji.ac.il/",
      "registryIdentifier" : "MIR:00000228",
      "uris" : [ "urn:miriam:protonet.proteincard", "http://identifiers.org/protonet.proteincard/", "http://identifiers.org/protonet.proteincard", "https://identifiers.org/protonet.proteincard/", "https://identifiers.org/protonet.proteincard" ]
    },
    "PSCDB" : {
      "commonName" : "PSCDB",
      "homepage" : "http://idp1.force.cs.is.nagoya-u.ac.jp/pscdb/index.html",
      "registryIdentifier" : "MIR:00000370",
      "uris" : [ "urn:miriam:pscdb", "http://identifiers.org/pscdb/", "http://identifiers.org/pscdb", "https://identifiers.org/pscdb/", "https://identifiers.org/pscdb" ]
    },
    "PSEUDOMONAS_GENOME_DATABASE" : {
      "commonName" : "Pseudomonas Genome Database",
      "homepage" : "http://www.pseudomonas.com/",
      "registryIdentifier" : "MIR:00000180",
      "uris" : [ "urn:miriam:pseudomonas", "http://identifiers.org/pseudomonas/", "http://identifiers.org/pseudomonas", "https://identifiers.org/pseudomonas/", "https://identifiers.org/pseudomonas" ]
    },
    "PUBCHEM" : {
      "commonName" : "PubChem-compound",
      "homepage" : "http://pubchem.ncbi.nlm.nih.gov/",
      "registryIdentifier" : "MIR:00000034",
      "uris" : [ "urn:miriam:pubchem.compound", "http://identifiers.org/pubchem.compound/", "http://identifiers.org/pubchem.compound", "https://identifiers.org/pubchem.compound/", "https://identifiers.org/pubchem.compound" ]
    },
    "PUBCHEM_BIOASSAY" : {
      "commonName" : "PubChem-bioassay",
      "homepage" : "https://www.ncbi.nlm.nih.gov/sites/entrez?db=pcassay",
      "registryIdentifier" : "MIR:00000072",
      "uris" : [ "urn:miriam:pubchem.bioassay", "http://identifiers.org/pubchem.bioassay/", "http://identifiers.org/pubchem.bioassay", "https://identifiers.org/pubchem.bioassay/", "https://identifiers.org/pubchem.bioassay" ]
    },
    "PUBCHEM_SUBSTANCE" : {
      "commonName" : "PubChem-substance",
      "homepage" : "http://pubchem.ncbi.nlm.nih.gov/",
      "registryIdentifier" : "MIR:00000033",
      "uris" : [ "urn:miriam:pubchem.substance", "http://identifiers.org/pubchem.substance/", "http://identifiers.org/pubchem.substance", "https://identifiers.org/pubchem.substance/", "https://identifiers.org/pubchem.substance" ]
    },
    "PUBMED" : {
      "commonName" : "PubMed",
      "homepage" : "http://www.ncbi.nlm.nih.gov/PubMed/",
      "registryIdentifier" : "MIR:00000015",
      "uris" : [ "urn:miriam:pubmed", "http://identifiers.org/pubmed/", "http://identifiers.org/pubmed", "https://identifiers.org/pubmed/", "https://identifiers.org/pubmed" ]
    },
    "RAT_GENOME_DATABASE_QTL" : {
      "commonName" : "Rat Genome Database qTL",
      "homepage" : "http://rgd.mcw.edu/",
      "registryIdentifier" : "MIR:00000451",
      "uris" : [ "urn:miriam:rgd.qtl", "http://identifiers.org/rgd.qtl/", "http://identifiers.org/rgd.qtl", "https://identifiers.org/rgd.qtl/", "https://identifiers.org/rgd.qtl" ]
    },
    "RAT_GENOME_DATABASE_STRAIN" : {
      "commonName" : "Rat Genome Database strain",
      "homepage" : "http://rgd.mcw.edu/",
      "registryIdentifier" : "MIR:00000452",
      "uris" : [ "urn:miriam:rgd.strain", "http://identifiers.org/rgd.strain/", "http://identifiers.org/rgd.strain", "https://identifiers.org/rgd.strain/", "https://identifiers.org/rgd.strain" ]
    },
    "REACTOME" : {
      "commonName" : "Reactome",
      "homepage" : "http://www.reactome.org/",
      "registryIdentifier" : "MIR:00000018",
      "uris" : [ "urn:miriam:reactome", "http://identifiers.org/reactome/", "http://identifiers.org/reactome", "https://identifiers.org/reactome/", "https://identifiers.org/reactome" ]
    },
    "REBASE" : {
      "commonName" : "REBASE",
      "homepage" : "http://rebase.neb.com/rebase/",
      "registryIdentifier" : "MIR:00000230",
      "uris" : [ "urn:miriam:rebase", "http://identifiers.org/rebase/", "http://identifiers.org/rebase", "https://identifiers.org/rebase/", "https://identifiers.org/rebase" ]
    },
    "REFSEQ" : {
      "commonName" : "RefSeq",
      "homepage" : "http://www.ncbi.nlm.nih.gov/projects/RefSeq/",
      "registryIdentifier" : "MIR:00000039",
      "uris" : [ "urn:miriam:refseq", "http://identifiers.org/refseq/", "http://identifiers.org/refseq", "https://identifiers.org/refseq/", "https://identifiers.org/refseq" ]
    },
    "RELATION_ONTOLOGY" : {
      "commonName" : "Relation Ontology",
      "homepage" : "http://obofoundry.org/ontology/ro.html",
      "registryIdentifier" : "MIR:00000120",
      "uris" : [ "urn:miriam:ro", "urn:miriam:obo.ro", "http://identifiers.org/ro/", "http://identifiers.org/ro", "https://identifiers.org/ro/", "https://identifiers.org/ro" ]
    },
    "RESID" : {
      "commonName" : "RESID",
      "homepage" : "http://pir0.georgetown.edu/resid/",
      "registryIdentifier" : "MIR:00000046",
      "uris" : [ "urn:miriam:resid", "http://identifiers.org/resid/", "http://identifiers.org/resid", "https://identifiers.org/resid/", "https://identifiers.org/resid" ]
    },
    "RFAM" : {
      "commonName" : "RFAM",
      "homepage" : "https://rfam.xfam.org/",
      "registryIdentifier" : "MIR:00000409",
      "uris" : [ "urn:miriam:rfam", "http://identifiers.org/rfam/", "http://identifiers.org/rfam", "https://identifiers.org/rfam/", "https://identifiers.org/rfam" ]
    },
    "RGD" : {
      "commonName" : "Rat Genome Database",
      "homepage" : "http://rgd.mcw.edu/",
      "registryIdentifier" : "MIR:00000047",
      "uris" : [ "urn:miriam:rgd", "http://identifiers.org/rgd/", "http://identifiers.org/rgd", "https://identifiers.org/rgd/", "https://identifiers.org/rgd" ]
    },
    "RHEA" : {
      "commonName" : "Rhea",
      "homepage" : "http://www.rhea-db.org/",
      "registryIdentifier" : "MIR:00000082",
      "uris" : [ "urn:miriam:rhea", "http://identifiers.org/rhea/", "http://identifiers.org/rhea", "https://identifiers.org/rhea/", "https://identifiers.org/rhea" ]
    },
    "RICE_GENOME_ANNOTATION_PROJECT" : {
      "commonName" : "Rice Genome Annotation Project",
      "homepage" : "http://rice.plantbiology.msu.edu/annotation_pseudo_current.shtml",
      "registryIdentifier" : "MIR:00000358",
      "uris" : [ "urn:miriam:ricegap", "http://identifiers.org/ricegap/", "http://identifiers.org/ricegap", "https://identifiers.org/ricegap/", "https://identifiers.org/ricegap" ]
    },
    "RNA_MODIFICATION_DATABASE" : {
      "commonName" : "RNA Modification Database",
      "homepage" : "http://rna-mdb.cas.albany.edu/RNAmods/rnaover.htm",
      "registryIdentifier" : "MIR:00000308",
      "uris" : [ "urn:miriam:rnamods", "http://identifiers.org/rnamods/", "http://identifiers.org/rnamods", "https://identifiers.org/rnamods/", "https://identifiers.org/rnamods" ]
    },
    "ROUGE" : {
      "commonName" : "Rouge",
      "homepage" : "http://www.kazusa.or.jp/rouge/",
      "registryIdentifier" : "MIR:00000293",
      "uris" : [ "urn:miriam:rouge", "http://identifiers.org/rouge/", "http://identifiers.org/rouge", "https://identifiers.org/rouge/", "https://identifiers.org/rouge" ]
    },
    "SABIO_RK_EC_RECORD" : {
      "commonName" : "SABIO-RK EC Record",
      "homepage" : "http://sabiork.h-its.org/",
      "registryIdentifier" : "MIR:00000128",
      "uris" : [ "urn:miriam:sabiork.ec", "http://identifiers.org/sabiork.ec/", "http://identifiers.org/sabiork.ec", "https://identifiers.org/sabiork.ec/", "https://identifiers.org/sabiork.ec" ]
    },
    "SABIO_RK_KINETIC_RECORD" : {
      "commonName" : "SABIO-RK Kinetic Record",
      "homepage" : "http://sabiork.h-its.org/",
      "registryIdentifier" : "MIR:00000086",
      "uris" : [ "urn:miriam:sabiork.kineticrecord", "http://identifiers.org/sabiork.kineticrecord/", "http://identifiers.org/sabiork.kineticrecord", "https://identifiers.org/sabiork.kineticrecord/", "https://identifiers.org/sabiork.kineticrecord" ]
    },
    "SABIO_RK_REACTION" : {
      "commonName" : "SABIO-RK Reaction",
      "homepage" : "http://sabiork.h-its.org/",
      "registryIdentifier" : "MIR:00000038",
      "uris" : [ "urn:miriam:sabiork.reaction", "http://identifiers.org/sabiork.reaction/", "http://identifiers.org/sabiork.reaction", "https://identifiers.org/sabiork.reaction/", "https://identifiers.org/sabiork.reaction" ]
    },
    "SACCHAROMYCES_GENOME_DATABASE_PATHWAYS" : {
      "commonName" : "Saccharomyces genome database pathways",
      "homepage" : "http://pathway.yeastgenome.org/",
      "registryIdentifier" : "MIR:00000057",
      "uris" : [ "urn:miriam:sgd.pathways", "http://identifiers.org/sgd.pathways/", "http://identifiers.org/sgd.pathways", "https://identifiers.org/sgd.pathways/", "https://identifiers.org/sgd.pathways" ]
    },
    "SBML_RDF_VOCABULARY" : {
      "commonName" : "SBML RDF Vocabulary",
      "homepage" : "http://biomodels.net/rdf/vocabulary.rdf",
      "registryIdentifier" : "MIR:00000514",
      "uris" : [ "urn:miriam:biomodels.vocabulary", "http://identifiers.org/biomodels.vocabulary/", "http://identifiers.org/biomodels.vocabulary", "https://identifiers.org/biomodels.vocabulary/", "https://identifiers.org/biomodels.vocabulary" ]
    },
    "SBO_TERM" : {
      "commonName" : "Systems Biology Ontology",
      "homepage" : "http://www.ebi.ac.uk/sbo/main/",
      "registryIdentifier" : "MIR:00000024",
      "uris" : [ "urn:miriam:biomodels.sbo", "urn:miriam:obo.sbo", "urn:miriam:sbo", "http://identifiers.org/biomodels.sbo/", "http://identifiers.org/sbo/", "http://identifiers.org/SBO", "https://identifiers.org/biomodels.sbo/", "https://identifiers.org/sbo/", "https://identifiers.org/SBO" ]
    },
    "SCERTF" : {
      "commonName" : "ScerTF",
      "homepage" : "http://stormo.wustl.edu/ScerTF/",
      "registryIdentifier" : "MIR:00000244",
      "uris" : [ "urn:miriam:scretf", "http://identifiers.org/scretf/", "http://identifiers.org/scretf", "https://identifiers.org/scretf/", "https://identifiers.org/scretf" ]
    },
    "SCOP" : {
      "commonName" : "SCOP",
      "homepage" : "http://scop.mrc-lmb.cam.ac.uk/scop/",
      "registryIdentifier" : "MIR:00000371",
      "uris" : [ "urn:miriam:scop", "http://identifiers.org/scop/", "http://identifiers.org/scop", "https://identifiers.org/scop/", "https://identifiers.org/scop" ]
    },
    "SEED_COMPOUND" : {
      "commonName" : "SEED Compound",
      "homepage" : "http://modelseed.org/",
      "registryIdentifier" : "MIR:00000553",
      "uris" : [ "http://identifiers.org/seed.compound/", "http://identifiers.org/seed.compound", "https://identifiers.org/seed.compound/", "https://identifiers.org/seed.compound" ]
    },
    "SEED_REACTIONS" : {
      "commonName" : "SEED Reactions",
      "homepage" : "http://modelseed.org/biochem/reactions/",
      "registryIdentifier" : "MIR:00000692",
      "uris" : [ "http://identifiers.org/seed.reaction/", "http://identifiers.org/seed.reaction", "https://identifiers.org/seed.reaction/", "https://identifiers.org/seed.reaction" ]
    },
    "SEQUENCE_ONTOLOGY" : {
      "commonName" : "Sequence Ontology",
      "homepage" : "http://www.sequenceontology.org/",
      "registryIdentifier" : "MIR:00000081",
      "uris" : [ "urn:miriam:so", "urn:miriam:obo.so", "http://identifiers.org/so/", "http://identifiers.org/SO", "https://identifiers.org/so/", "https://identifiers.org/SO" ]
    },
    "SEQUENCE_READ_ARCHIVE" : {
      "commonName" : "Sequence Read Archive",
      "homepage" : "https://www.ncbi.nlm.nih.gov/sra",
      "registryIdentifier" : "MIR:00000243",
      "uris" : [ "urn:miriam:insdc.sra", "http://identifiers.org/insdc.sra/", "http://identifiers.org/insdc.sra", "https://identifiers.org/insdc.sra/", "https://identifiers.org/insdc.sra" ]
    },
    "SGD" : {
      "commonName" : "Saccharomyces Genome Database",
      "homepage" : "http://www.yeastgenome.org/",
      "registryIdentifier" : "MIR:00000023",
      "uris" : [ "urn:miriam:sgd", "http://identifiers.org/sgd/", "http://identifiers.org/sgd", "https://identifiers.org/sgd/", "https://identifiers.org/sgd" ]
    },
    "SIDER_DRUG" : {
      "commonName" : "SIDER Drug",
      "homepage" : "http://sideeffects.embl.de/",
      "registryIdentifier" : "MIR:00000435",
      "uris" : [ "urn:miriam:sider.drug", "http://identifiers.org/sider.drug/", "http://identifiers.org/sider.drug", "https://identifiers.org/sider.drug/", "https://identifiers.org/sider.drug" ]
    },
    "SIDER_SIDE_EFFECT" : {
      "commonName" : "SIDER Side Effect",
      "homepage" : "http://sideeffects.embl.de/",
      "registryIdentifier" : "MIR:00000436",
      "uris" : [ "urn:miriam:sider.effect", "http://identifiers.org/sider.effect/", "http://identifiers.org/sider.effect", "https://identifiers.org/sider.effect/", "https://identifiers.org/sider.effect" ]
    },
    "SIGNALING_GATEWAY" : {
      "commonName" : "Signaling Gateway",
      "homepage" : "http://www.signaling-gateway.org/molecule",
      "registryIdentifier" : "MIR:00000045",
      "uris" : [ "urn:miriam:signaling-gateway", "http://identifiers.org/signaling-gateway/", "http://identifiers.org/signaling-gateway", "https://identifiers.org/signaling-gateway/", "https://identifiers.org/signaling-gateway" ]
    },
    "SITEX" : {
      "commonName" : "SitEx",
      "homepage" : "http://www-bionet.sscc.ru/sitex/",
      "registryIdentifier" : "MIR:00000252",
      "uris" : [ "urn:miriam:sitex", "http://identifiers.org/sitex/", "http://identifiers.org/sitex", "https://identifiers.org/sitex/", "https://identifiers.org/sitex" ]
    },
    "SMALL_MOLECULE_PATHWAY_DATABASE" : {
      "commonName" : "Small Molecule Pathway Database",
      "homepage" : "https://smpdb.ca/",
      "registryIdentifier" : "MIR:00000104",
      "uris" : [ "urn:miriam:smpdb", "http://identifiers.org/smpdb/", "http://identifiers.org/smpdb", "https://identifiers.org/smpdb/", "https://identifiers.org/smpdb" ]
    },
    "SMART" : {
      "commonName" : "SMART",
      "homepage" : "http://smart.embl-heidelberg.de/",
      "registryIdentifier" : "MIR:00000118",
      "uris" : [ "urn:miriam:smart", "http://identifiers.org/smart/", "http://identifiers.org/smart", "https://identifiers.org/smart/", "https://identifiers.org/smart" ]
    },
    "SNOMED_CT" : {
      "commonName" : "SNOMED CT",
      "homepage" : "http://www.snomedbrowser.com/",
      "registryIdentifier" : "MIR:00000269",
      "uris" : [ "urn:miriam:snomedct", "http://identifiers.org/snomedct/", "http://identifiers.org/snomedct", "https://identifiers.org/snomedct/", "https://identifiers.org/snomedct" ]
    },
    "SOL_GENOMICS_NETWORK" : {
      "commonName" : "Sol Genomics Network",
      "homepage" : "http://solgenomics.net/",
      "registryIdentifier" : "MIR:00000185",
      "uris" : [ "urn:miriam:sgn", "http://identifiers.org/sgn/", "http://identifiers.org/sgn", "https://identifiers.org/sgn/", "https://identifiers.org/sgn" ]
    },
    "SOYBASE" : {
      "commonName" : "SoyBase",
      "homepage" : "http://soybase.org/",
      "registryIdentifier" : "MIR:00000291",
      "uris" : [ "urn:miriam:soybase", "http://identifiers.org/soybase/", "http://identifiers.org/soybase", "https://identifiers.org/soybase/", "https://identifiers.org/soybase" ]
    },
    "SPECTRAL_DATABASE_FOR_ORGANIC_COMPOUNDS" : {
      "commonName" : "Spectral Database for Organic Compounds",
      "homepage" : "http://riodb01.ibase.aist.go.jp/sdbs/cgi-bin/direct_frame_top.cgi",
      "registryIdentifier" : "MIR:00000319",
      "uris" : [ "urn:miriam:sdbs", "http://identifiers.org/sdbs/", "http://identifiers.org/sdbs", "https://identifiers.org/sdbs/", "https://identifiers.org/sdbs" ]
    },
    "SPIKE" : {
      "commonName" : "SPIKE Map",
      "homepage" : "http://www.cs.tau.ac.il/~spike/",
      "registryIdentifier" : "MIR:00000321",
      "uris" : [ "urn:miriam:spike.map", "http://identifiers.org/spike.map/", "http://identifiers.org/spike.map", "https://identifiers.org/spike.map/", "https://identifiers.org/spike.map" ]
    },
    "STAP" : {
      "commonName" : "STAP",
      "homepage" : "http://psb.kobic.re.kr/STAP/refinement/",
      "registryIdentifier" : "MIR:00000399",
      "uris" : [ "urn:miriam:stap", "http://identifiers.org/stap/", "http://identifiers.org/stap", "https://identifiers.org/stap/", "https://identifiers.org/stap" ]
    },
    "STITCH" : {
      "commonName" : "STITCH",
      "homepage" : "http://stitch.embl.de/",
      "registryIdentifier" : "MIR:00000266",
      "uris" : [ "urn:miriam:stitch", "http://identifiers.org/stitch/", "http://identifiers.org/stitch", "https://identifiers.org/stitch/", "https://identifiers.org/stitch" ]
    },
    "STRING" : {
      "commonName" : "STRING",
      "homepage" : "http://string-db.org/",
      "registryIdentifier" : "MIR:00000265",
      "uris" : [ "urn:miriam:string", "http://identifiers.org/string/", "http://identifiers.org/string", "https://identifiers.org/string/", "https://identifiers.org/string" ]
    },
    "SUBSTRATEDB" : {
      "commonName" : "SubstrateDB",
      "homepage" : "http://substrate.burnham.org/",
      "registryIdentifier" : "MIR:00000224",
      "uris" : [ "urn:miriam:pmap.substratedb", "http://identifiers.org/pmap.substratedb/", "http://identifiers.org/pmap.substratedb", "https://identifiers.org/pmap.substratedb/", "https://identifiers.org/pmap.substratedb" ]
    },
    "SUBTILIST" : {
      "commonName" : "SubtiList",
      "homepage" : "http://genolist.pasteur.fr/SubtiList/",
      "registryIdentifier" : "MIR:00000433",
      "uris" : [ "urn:miriam:subtilist", "http://identifiers.org/subtilist/", "http://identifiers.org/subtilist", "https://identifiers.org/subtilist/", "https://identifiers.org/subtilist" ]
    },
    "SUBTIWIKI" : {
      "commonName" : "SubtiWiki",
      "homepage" : "http://www.subtiwiki.uni-goettingen.de/wiki/index.php/Main_Page",
      "registryIdentifier" : "MIR:00000132",
      "uris" : [ "urn:miriam:subtiwiki", "http://identifiers.org/subtiwiki/", "http://identifiers.org/subtiwiki", "https://identifiers.org/subtiwiki/", "https://identifiers.org/subtiwiki" ]
    },
    "SUPFAM" : {
      "commonName" : "SUPFAM",
      "homepage" : "http://supfam.org/SUPERFAMILY/",
      "registryIdentifier" : "MIR:00000357",
      "uris" : [ "urn:miriam:supfam", "http://identifiers.org/supfam/", "http://identifiers.org/supfam", "https://identifiers.org/supfam/", "https://identifiers.org/supfam" ]
    },
    "SWISS_LIPIDS" : {
      "commonName" : "SwissLipids",
      "homepage" : "http://www.swisslipids.org/#/",
      "registryIdentifier" : "MIR:00000550",
      "uris" : [ "http://identifiers.org/slm/", "http://identifiers.org/SLM", "https://identifiers.org/slm/", "https://identifiers.org/SLM" ]
    },
    "SWISS_MODEL" : {
      "commonName" : "SWISS-MODEL",
      "homepage" : "https://swissmodel.expasy.org",
      "registryIdentifier" : "MIR:00000231",
      "uris" : [ "urn:miriam:swiss-model", "http://identifiers.org/swiss-model/", "http://identifiers.org/swiss-model", "https://identifiers.org/swiss-model/", "https://identifiers.org/swiss-model" ]
    },
    "T3DB" : {
      "commonName" : "T3DB",
      "homepage" : "http://www.t3db.org/",
      "registryIdentifier" : "MIR:00000103",
      "uris" : [ "urn:miriam:t3db", "http://identifiers.org/t3db/", "http://identifiers.org/t3db", "https://identifiers.org/t3db/", "https://identifiers.org/t3db" ]
    },
    "TAIR_GENE" : {
      "commonName" : "TAIR Gene",
      "homepage" : "http://arabidopsis.org/index.jsp",
      "registryIdentifier" : "MIR:00000049",
      "uris" : [ "urn:miriam:tair.gene", "http://identifiers.org/tair.gene/", "http://identifiers.org/tair.gene", "https://identifiers.org/tair.gene/", "https://identifiers.org/tair.gene" ]
    },
    "TAIR_LOCUS" : {
      "commonName" : "TAIR Locus",
      "homepage" : "http://arabidopsis.org/index.jsp",
      "registryIdentifier" : "MIR:00000050",
      "uris" : [ "urn:miriam:tair.locus", "http://identifiers.org/tair.locus/", "http://identifiers.org/tair.locus", "https://identifiers.org/tair.locus/", "https://identifiers.org/tair.locus" ]
    },
    "TAIR_PROTEIN" : {
      "commonName" : "TAIR Protein",
      "homepage" : "http://arabidopsis.org/index.jsp",
      "registryIdentifier" : "MIR:00000048",
      "uris" : [ "urn:miriam:tair.protein", "http://identifiers.org/tair.protein/", "http://identifiers.org/tair.protein", "https://identifiers.org/tair.protein/", "https://identifiers.org/tair.protein" ]
    },
    "TARBASE" : {
      "commonName" : "TarBase",
      "homepage" : "http://diana.imis.athena-innovation.gr/DianaTools/index.php?r=tarbase/index",
      "registryIdentifier" : "MIR:00000340",
      "uris" : [ "urn:miriam:tarbase", "http://identifiers.org/tarbase/", "http://identifiers.org/tarbase", "https://identifiers.org/tarbase/", "https://identifiers.org/tarbase" ]
    },
    "TAXONOMY" : {
      "commonName" : "Taxonomy",
      "homepage" : "http://www.ncbi.nlm.nih.gov/taxonomy/",
      "registryIdentifier" : "MIR:00000006",
      "uris" : [ "urn:miriam:taxonomy", "http://identifiers.org/taxonomy/", "http://identifiers.org/taxonomy", "https://identifiers.org/taxonomy/", "https://identifiers.org/taxonomy" ]
    },
    "TEDDY" : {
      "commonName" : "TEDDY",
      "homepage" : "http://teddyontology.sourceforge.net/",
      "registryIdentifier" : "MIR:00000107",
      "uris" : [ "urn:miriam:biomodels.teddy", "urn:miriam:teddy", "http://identifiers.org/biomodels.teddy/", "http://identifiers.org/biomodels.teddy", "https://identifiers.org/biomodels.teddy/", "https://identifiers.org/biomodels.teddy" ]
    },
    "TETRAHYMENA_GENOME_DATABASE" : {
      "commonName" : "Tetrahymena Genome Database",
      "homepage" : "http://ciliate.org/index.php/",
      "registryIdentifier" : "MIR:00000313",
      "uris" : [ "urn:miriam:tgd", "http://identifiers.org/tgd/", "http://identifiers.org/tgd", "https://identifiers.org/tgd/", "https://identifiers.org/tgd" ]
    },
    "TIGRFAMS" : {
      "commonName" : "TIGRFAMS",
      "homepage" : "http://www.jcvi.org/cgi-bin/tigrfams/Listing.cgi",
      "registryIdentifier" : "MIR:00000315",
      "uris" : [ "urn:miriam:tigrfam", "http://identifiers.org/tigrfam/", "http://identifiers.org/tigrfam", "https://identifiers.org/tigrfam/", "https://identifiers.org/tigrfam" ]
    },
    "TISSUE_LIST" : {
      "commonName" : "Tissue List",
      "homepage" : "https://www.uniprot.org/docs/tisslist.txt",
      "registryIdentifier" : "MIR:00000360",
      "uris" : [ "urn:miriam:tissuelist", "http://identifiers.org/tissuelist/", "http://identifiers.org/tissuelist", "https://identifiers.org/tissuelist/", "https://identifiers.org/tissuelist" ]
    },
    "TOPDB" : {
      "commonName" : "TOPDB",
      "homepage" : "http://topdb.enzim.hu/",
      "registryIdentifier" : "MIR:00000503",
      "uris" : [ "urn:miriam:topdb", "http://identifiers.org/topdb/", "http://identifiers.org/topdb", "https://identifiers.org/topdb/", "https://identifiers.org/topdb" ]
    },
    "TOPFIND" : {
      "commonName" : "TopFind",
      "homepage" : "http://clipserve.clip.ubc.ca/topfind",
      "registryIdentifier" : "MIR:00000255",
      "uris" : [ "urn:miriam:topfind", "http://identifiers.org/topfind/", "http://identifiers.org/topfind", "https://identifiers.org/topfind/", "https://identifiers.org/topfind" ]
    },
    "TOXICOGENOMIC_CHEMICAL" : {
      "commonName" : "Toxicogenomic Chemical",
      "homepage" : "http://ctdbase.org/",
      "registryIdentifier" : "MIR:00000098",
      "uris" : [ "urn:miriam:ctd.chemical", "http://identifiers.org/ctd.chemical/", "http://identifiers.org/ctd.chemical", "https://identifiers.org/ctd.chemical/", "https://identifiers.org/ctd.chemical" ]
    },
    "TOXODB" : {
      "commonName" : "ToxoDB",
      "homepage" : "http://toxodb.org/toxo/",
      "registryIdentifier" : "MIR:00000153",
      "uris" : [ "urn:miriam:toxoplasma", "http://identifiers.org/toxoplasma/", "http://identifiers.org/toxoplasma", "https://identifiers.org/toxoplasma/", "https://identifiers.org/toxoplasma" ]
    },
    "TRANSPORT_CLASSIFICATION_DATABASE" : {
      "commonName" : "Transport Classification Database",
      "homepage" : "http://www.tcdb.org/",
      "registryIdentifier" : "MIR:00000040",
      "uris" : [ "urn:miriam:tcdb", "http://identifiers.org/tcdb/", "http://identifiers.org/tcdb", "https://identifiers.org/tcdb/", "https://identifiers.org/tcdb" ]
    },
    "TREEBASE" : {
      "commonName" : "TreeBASE",
      "homepage" : "http://treebase.org/",
      "registryIdentifier" : "MIR:00000312",
      "uris" : [ "urn:miriam:treebase", "http://identifiers.org/treebase/", "http://identifiers.org/treebase", "https://identifiers.org/treebase/", "https://identifiers.org/treebase" ]
    },
    "TREEFAM" : {
      "commonName" : "TreeFam",
      "homepage" : "http://www.treefam.org/",
      "registryIdentifier" : "MIR:00000395",
      "uris" : [ "urn:miriam:treefam", "http://identifiers.org/treefam/", "http://identifiers.org/treefam", "https://identifiers.org/treefam/", "https://identifiers.org/treefam" ]
    },
    "TREE_OF_LIFE" : {
      "commonName" : "Tree of Life",
      "homepage" : "http://tolweb.org/tree/",
      "registryIdentifier" : "MIR:00000405",
      "uris" : [ "urn:miriam:tol", "http://identifiers.org/tol/", "http://identifiers.org/tol", "https://identifiers.org/tol/", "https://identifiers.org/tol" ]
    },
    "TRICHDB" : {
      "commonName" : "TrichDB",
      "homepage" : "http://trichdb.org/trichdb/",
      "registryIdentifier" : "MIR:00000154",
      "uris" : [ "urn:miriam:trichdb", "http://identifiers.org/trichdb/", "http://identifiers.org/trichdb", "https://identifiers.org/trichdb/", "https://identifiers.org/trichdb" ]
    },
    "TRITRYPDB" : {
      "commonName" : "TriTrypDB",
      "homepage" : "http://tritrypdb.org/tritrypdb/",
      "registryIdentifier" : "MIR:00000155",
      "uris" : [ "urn:miriam:tritrypdb", "http://identifiers.org/tritrypdb/", "http://identifiers.org/tritrypdb", "https://identifiers.org/tritrypdb/", "https://identifiers.org/tritrypdb" ]
    },
    "TTD_Drug" : {
      "commonName" : "TTD Drug",
      "homepage" : "http://bidd.nus.edu.sg/group/ttd/ttd.asp",
      "registryIdentifier" : "MIR:00000092",
      "uris" : [ "urn:miriam:ttd.drug", "http://identifiers.org/ttd.drug/", "http://identifiers.org/ttd.drug", "https://identifiers.org/ttd.drug/", "https://identifiers.org/ttd.drug" ]
    },
    "TTD_TARGET" : {
      "commonName" : "TTD Target",
      "homepage" : "http://bidd.nus.edu.sg/group/ttd/ttd.asp",
      "registryIdentifier" : "MIR:00000093",
      "uris" : [ "urn:miriam:ttd.target", "http://identifiers.org/ttd.target/", "http://identifiers.org/ttd.target", "https://identifiers.org/ttd.target/", "https://identifiers.org/ttd.target" ]
    },
    "UBERON" : {
      "commonName" : "UBERON",
      "homepage" : "http://bioportal.bioontology.org/ontologies/UBERON",
      "registryIdentifier" : "MIR:00000446",
      "uris" : [ "urn:miriam:uberon", "http://identifiers.org/uberon/", "http://identifiers.org/UBERON", "https://identifiers.org/uberon/", "https://identifiers.org/UBERON" ]
    },
    "UBIO_NAMEBANK" : {
      "commonName" : "uBio NameBank",
      "homepage" : "http://www.ubio.org",
      "registryIdentifier" : "MIR:00000338",
      "uris" : [ "urn:miriam:ubio.namebank", "http://identifiers.org/ubio.namebank/", "http://identifiers.org/ubio.namebank", "https://identifiers.org/ubio.namebank/", "https://identifiers.org/ubio.namebank" ]
    },
    "UM_BBD_BIOTRANSFORMATION_RULE" : {
      "commonName" : "UM-BBD Biotransformation Rule",
      "homepage" : "http://umbbd.ethz.ch/servlets/pageservlet?ptype=allrules",
      "registryIdentifier" : "MIR:00000328",
      "uris" : [ "urn:miriam:umbbd.rule", "http://identifiers.org/umbbd.rule/", "http://identifiers.org/umbbd.rule", "https://identifiers.org/umbbd.rule/", "https://identifiers.org/umbbd.rule" ]
    },
    "UM_BBD_COMPOUND" : {
      "commonName" : "UM-BBD Compound",
      "homepage" : "http://umbbd.ethz.ch/",
      "registryIdentifier" : "MIR:00000276",
      "uris" : [ "urn:miriam:umbbd.compound", "http://identifiers.org/umbbd.compound/", "http://identifiers.org/umbbd.compound", "https://identifiers.org/umbbd.compound/", "https://identifiers.org/umbbd.compound" ]
    },
    "UM_BBD_ENZYME" : {
      "commonName" : "UM-BBD Enzyme",
      "homepage" : "http://umbbd.ethz.ch/",
      "registryIdentifier" : "MIR:00000326",
      "uris" : [ "urn:miriam:umbbd.enzyme", "http://identifiers.org/umbbd.enzyme/", "http://identifiers.org/umbbd.enzyme", "https://identifiers.org/umbbd.enzyme/", "https://identifiers.org/umbbd.enzyme" ]
    },
    "UM_BBD_PATHWAY" : {
      "commonName" : "UM-BBD Pathway",
      "homepage" : "http://umbbd.ethz.ch/",
      "registryIdentifier" : "MIR:00000327",
      "uris" : [ "urn:miriam:umbbd.pathway", "http://identifiers.org/umbbd.pathway/", "http://identifiers.org/umbbd.pathway", "https://identifiers.org/umbbd.pathway/", "https://identifiers.org/umbbd.pathway" ]
    },
    "UM_BBD_REACTION" : {
      "commonName" : "UM-BBD Reaction",
      "homepage" : "http://umbbd.ethz.ch/",
      "registryIdentifier" : "MIR:00000325",
      "uris" : [ "urn:miriam:umbbd.reaction", "http://identifiers.org/umbbd.reaction/", "http://identifiers.org/umbbd.reaction", "https://identifiers.org/umbbd.reaction/", "https://identifiers.org/umbbd.reaction" ]
    },
    "UNIGENE" : {
      "commonName" : "UniGene",
      "homepage" : "http://www.ncbi.nlm.nih.gov/unigene",
      "registryIdentifier" : "MIR:00000346",
      "uris" : [ "urn:miriam:unigene", "http://identifiers.org/unigene/", "http://identifiers.org/unigene", "https://identifiers.org/unigene/", "https://identifiers.org/unigene" ]
    },
    "UNII" : {
      "commonName" : "UNII",
      "homepage" : "http://fdasis.nlm.nih.gov/srs/",
      "registryIdentifier" : "MIR:00000531",
      "uris" : [ "urn:miriam:unii", "http://identifiers.org/unii/", "http://identifiers.org/unii", "https://identifiers.org/unii/", "https://identifiers.org/unii" ]
    },
    "UNIMOD" : {
      "commonName" : "Unimod",
      "homepage" : "http://www.unimod.org/",
      "registryIdentifier" : "MIR:00000447",
      "uris" : [ "urn:miriam:unimod", "http://identifiers.org/unimod/", "http://identifiers.org/unimod", "https://identifiers.org/unimod/", "https://identifiers.org/unimod" ]
    },
    "UNIPARC" : {
      "commonName" : "UniParc",
      "homepage" : "https://www.ebi.ac.uk/uniparc/",
      "registryIdentifier" : "MIR:00000041",
      "uris" : [ "urn:miriam:uniparc", "http://identifiers.org/uniparc/", "http://identifiers.org/uniparc", "https://identifiers.org/uniparc/", "https://identifiers.org/uniparc" ]
    },
    "UNIPATHWAY_REACTION" : {
      "commonName" : "UniPathway Reaction",
      "homepage" : "http://www.grenoble.prabi.fr/obiwarehouse/unipathway/",
      "registryIdentifier" : "MIR:00000570",
      "uris" : [ "http://identifiers.org/unipathway.reaction/", "http://identifiers.org/unipathway.reaction", "https://identifiers.org/unipathway.reaction/", "https://identifiers.org/unipathway.reaction" ]
    },
    "UNIPROT" : {
      "commonName" : "Uniprot",
      "homepage" : "http://www.uniprot.org/",
      "registryIdentifier" : "MIR:00000005",
      "uris" : [ "urn:miriam:uniprot", "urn:lsid:uniprot.org", "http://identifiers.org/uniprot/", "http://identifiers.org/uniprot", "https://purl.uniprot.org/uniprot/", "https://identifiers.org/uniprot/", "https://identifiers.org/uniprot" ]
    },
    "UNIPROT_ISOFORM" : {
      "commonName" : "UniProt Isoform",
      "homepage" : "http://www.uniprot.org/",
      "registryIdentifier" : "MIR:00000388",
      "uris" : [ "urn:miriam:uniprot.isoform", "http://identifiers.org/uniprot.isoform/", "http://identifiers.org/uniprot.isoform", "https://identifiers.org/uniprot.isoform/", "https://identifiers.org/uniprot.isoform" ]
    },
    "UNISTS" : {
      "commonName" : "UniSTS",
      "homepage" : "https://www.ncbi.nlm.nih.gov/sites/entrez?db=unists",
      "registryIdentifier" : "MIR:00000162",
      "uris" : [ "urn:miriam:unists", "http://identifiers.org/unists/", "http://identifiers.org/unists", "https://identifiers.org/unists/", "https://identifiers.org/unists" ]
    },
    "UNITE" : {
      "commonName" : "Unite",
      "homepage" : "http://unite.ut.ee/",
      "registryIdentifier" : "MIR:00000352",
      "uris" : [ "urn:miriam:unite", "http://identifiers.org/unite/", "http://identifiers.org/unite", "https://identifiers.org/unite/", "https://identifiers.org/unite" ]
    },
    "UNIT_ONTOLOGY" : {
      "commonName" : "Unit Ontology",
      "homepage" : "http://bioportal.bioontology.org/ontologies/UO",
      "registryIdentifier" : "MIR:00000136",
      "uris" : [ "urn:miriam:unit", "urn:miriam:obo.unit", "http://identifiers.org/uo/", "http://identifiers.org/UO", "https://identifiers.org/uo/", "https://identifiers.org/UO" ]
    },
    "UNKNOWN" : {
      "commonName" : "Unknown",
      "homepage" : null,
      "registryIdentifier" : null,
      "uris" : [ ]
    },
    "USPTO" : {
      "commonName" : "USPTO",
      "homepage" : "http://patft.uspto.gov/netahtml/PTO/index.html",
      "registryIdentifier" : "MIR:00000538",
      "uris" : [ "urn:miriam:uspto", "http://identifiers.org/uspto/", "http://identifiers.org/uspto", "https://identifiers.org/uspto/", "https://identifiers.org/uspto" ]
    },
    "VARIO" : {
      "commonName" : "VariO",
      "homepage" : "http://bioportal.bioontology.org/ontologies/VARIO",
      "registryIdentifier" : "MIR:00000406",
      "uris" : [ "urn:miriam:vario", "http://identifiers.org/vario/", "http://identifiers.org/VariO", "https://identifiers.org/vario/", "https://identifiers.org/VariO" ]
    },
    "VBASE2" : {
      "commonName" : "Vbase2",
      "homepage" : "http://www.vbase2.org/vbase2.php",
      "registryIdentifier" : "MIR:00000320",
      "uris" : [ "urn:miriam:vbase2", "http://identifiers.org/vbase2/", "http://identifiers.org/vbase2", "https://identifiers.org/vbase2/", "https://identifiers.org/vbase2" ]
    },
    "VBRC" : {
      "commonName" : "VBRC",
      "homepage" : "http://vbrc.org/",
      "registryIdentifier" : "MIR:00000448",
      "uris" : [ "urn:miriam:vbrc", "http://identifiers.org/vbrc/", "http://identifiers.org/vbrc", "https://identifiers.org/vbrc/", "https://identifiers.org/vbrc" ]
    },
    "VFDB_GENE" : {
      "commonName" : "VFDB Gene",
      "homepage" : "http://www.mgc.ac.cn/VFs/",
      "registryIdentifier" : "MIR:00000472",
      "uris" : [ "urn:miriam:vfdb.gene", "http://identifiers.org/vfdb.gene/", "http://identifiers.org/vfdb.gene", "https://identifiers.org/vfdb.gene/", "https://identifiers.org/vfdb.gene" ]
    },
    "VFDB_GENUS" : {
      "commonName" : "VFDB Genus",
      "homepage" : "http://www.mgc.ac.cn/VFs/",
      "registryIdentifier" : "MIR:00000471",
      "uris" : [ "urn:miriam:vfdb.genus", "http://identifiers.org/vfdb.genus/", "http://identifiers.org/vfdb.genus", "https://identifiers.org/vfdb.genus/", "https://identifiers.org/vfdb.genus" ]
    },
    "VIRALZONE" : {
      "commonName" : "ViralZone",
      "homepage" : "http://www.expasy.org/viralzone/",
      "registryIdentifier" : "MIR:00000449",
      "uris" : [ "urn:miriam:viralzone", "http://identifiers.org/viralzone/", "http://identifiers.org/viralzone", "https://identifiers.org/viralzone/", "https://identifiers.org/viralzone" ]
    },
    "VIRSIRNA" : {
      "commonName" : "VIRsiRNA",
      "homepage" : "http://crdd.osdd.net/servers/virsirnadb",
      "registryIdentifier" : "MIR:00000249",
      "uris" : [ "urn:miriam:virsirna", "http://identifiers.org/virsirna/", "http://identifiers.org/virsirna", "https://identifiers.org/virsirna/", "https://identifiers.org/virsirna" ]
    },
    "VMH_METABOLITE" : {
      "commonName" : "VMH metabolite",
      "homepage" : "https://vmh.uni.lu/",
      "registryIdentifier" : "MIR:00000636",
      "uris" : [ "urn:miriam:vmhmetabolite", "http://identifiers.org/vmhmetabolite/", "http://identifiers.org/vmhmetabolite", "https://identifiers.org/vmhmetabolite/", "https://identifiers.org/vmhmetabolite" ]
    },
    "VMH_REACTION" : {
      "commonName" : "VMH reaction",
      "homepage" : "https://vmh.uni.lu/",
      "registryIdentifier" : "MIR:00000640",
      "uris" : [ "urn:miriam:vmhreaction", "http://identifiers.org/vmhreaction/", "http://identifiers.org/vmhreaction", "https://identifiers.org/vmhreaction/", "https://identifiers.org/vmhreaction" ]
    },
    "WIKIDATA" : {
      "commonName" : "Wikidata",
      "homepage" : "https://www.wikidata.org/",
      "registryIdentifier" : "MIR:00000549",
      "uris" : [ "urn:miriam:wikidata", "http://identifiers.org/wikidata/", "http://identifiers.org/wikidata", "https://identifiers.org/wikidata/", "https://identifiers.org/wikidata" ]
    },
    "WIKIGENES" : {
      "commonName" : "WikiGenes",
      "homepage" : "http://www.wikigenes.org/",
      "registryIdentifier" : "MIR:00000437",
      "uris" : [ "urn:miriam:wikigenes", "http://identifiers.org/wikigenes/", "http://identifiers.org/wikigenes", "https://identifiers.org/wikigenes/", "https://identifiers.org/wikigenes" ]
    },
    "WIKIPATHWAYS" : {
      "commonName" : "WikiPathways",
      "homepage" : "http://www.wikipathways.org/",
      "registryIdentifier" : "MIR:00000076",
      "uris" : [ "urn:miriam:wikipathways", "http://identifiers.org/wikipathways/", "http://identifiers.org/wikipathways", "https://identifiers.org/wikipathways/", "https://identifiers.org/wikipathways" ]
    },
    "WIKIPEDIA" : {
      "commonName" : "Wikipedia (English)",
      "homepage" : "http://en.wikipedia.org/wiki/Main_Page",
      "registryIdentifier" : "MIR:00000384",
      "uris" : [ "urn:miriam:wikipedia.en", "http://identifiers.org/wikipedia.en/", "http://identifiers.org/wikipedia.en", "https://identifiers.org/wikipedia.en/", "https://identifiers.org/wikipedia.en" ]
    },
    "WORFDB" : {
      "commonName" : "Worfdb",
      "homepage" : "http://worfdb.dfci.harvard.edu/",
      "registryIdentifier" : "MIR:00000288",
      "uris" : [ "urn:miriam:worfdb", "http://identifiers.org/worfdb/", "http://identifiers.org/worfdb", "https://identifiers.org/worfdb/", "https://identifiers.org/worfdb" ]
    },
    "WORMPEP" : {
      "commonName" : "Wormpep",
      "homepage" : "https://www.wormbase.org/db/seq/protein",
      "registryIdentifier" : "MIR:00000031",
      "uris" : [ "urn:miriam:wormpep", "http://identifiers.org/wormpep/", "http://identifiers.org/wormpep", "https://identifiers.org/wormpep/", "https://identifiers.org/wormpep" ]
    },
    "WORM_BASE" : {
      "commonName" : "WormBase",
      "homepage" : "http://wormbase.bio2rdf.org/fct",
      "registryIdentifier" : "MIR:00000027",
      "uris" : [ "urn:miriam:wormbase", "http://identifiers.org/wb/", "http://identifiers.org/wb", "https://identifiers.org/wb/", "https://identifiers.org/wb" ]
    },
    "WORM_BASE_RNAI" : {
      "commonName" : "WormBase RNAi",
      "homepage" : "https://www.wormbase.org/",
      "registryIdentifier" : "MIR:00000466",
      "uris" : [ "urn:miriam:wormbase.rnai", "http://identifiers.org/wb.rnai/", "http://identifiers.org/wb.rnai", "https://identifiers.org/wb.rnai/", "https://identifiers.org/wb.rnai" ]
    },
    "XENBASE" : {
      "commonName" : "Xenbase",
      "homepage" : "https://www.xenbase.org/",
      "registryIdentifier" : "MIR:00000186",
      "uris" : [ "urn:miriam:xenbase", "http://identifiers.org/xenbase/", "http://identifiers.org/xenbase", "https://identifiers.org/xenbase/", "https://identifiers.org/xenbase" ]
    },
    "YDPM" : {
      "commonName" : "YDPM",
      "homepage" : "http://www-deletion.stanford.edu/YDPM/",
      "registryIdentifier" : "MIR:00000465",
      "uris" : [ "urn:miriam:ydpm", "http://identifiers.org/ydpm/", "http://identifiers.org/ydpm", "https://identifiers.org/ydpm/", "https://identifiers.org/ydpm" ]
    },
    "YEAST_INTRON_DATABASE_V3" : {
      "commonName" : "Yeast Intron Database v3",
      "homepage" : "http://compbio.soe.ucsc.edu/yeast_introns.html",
      "registryIdentifier" : "MIR:00000460",
      "uris" : [ "urn:miriam:yid", "http://identifiers.org/yid/", "http://identifiers.org/yid", "https://identifiers.org/yid/", "https://identifiers.org/yid" ]
    },
    "YEAST_INTRON_DATABASE_V4_3" : {
      "commonName" : "Yeast Intron Database v4.3",
      "homepage" : "http://intron.ucsc.edu/yeast4.3/",
      "registryIdentifier" : "MIR:00000521",
      "uris" : [ "urn:miriam:yeastintron", "http://identifiers.org/yeastintron/", "http://identifiers.org/yeastintron", "https://identifiers.org/yeastintron/", "https://identifiers.org/yeastintron" ]
    },
    "YETFASCO" : {
      "commonName" : "YeTFasCo",
      "homepage" : "http://yetfasco.ccbr.utoronto.ca/",
      "registryIdentifier" : "MIR:00000339",
      "uris" : [ "urn:miriam:yetfasco", "http://identifiers.org/yetfasco/", "http://identifiers.org/yetfasco", "https://identifiers.org/yetfasco/", "https://identifiers.org/yetfasco" ]
    },
    "YRC_PDR" : {
      "commonName" : "YRC PDR",
      "homepage" : "http://www.yeastrc.org/pdr/",
      "registryIdentifier" : "MIR:00000459",
      "uris" : [ "urn:miriam:yrcpdr", "http://identifiers.org/yrcpdr/", "http://identifiers.org/yrcpdr", "https://identifiers.org/yrcpdr/", "https://identifiers.org/yrcpdr" ]
    },
    "ZFIN" : {
      "commonName" : "ZFIN Bioentity",
      "homepage" : "http://zfin.org",
      "registryIdentifier" : "MIR:00000079",
      "uris" : [ "urn:miriam:zfin", "http://identifiers.org/zfin/", "http://identifiers.org/zfin", "https://identifiers.org/zfin/", "https://identifiers.org/zfin" ]
    },
    "ZINC" : {
      "commonName" : "ZINC",
      "homepage" : "http://zinc15.docking.org/",
      "registryIdentifier" : "MIR:00000529",
      "uris" : [ "urn:miriam:zinc", "http://identifiers.org/zinc/", "http://identifiers.org/zinc", "https://identifiers.org/zinc/", "https://identifiers.org/zinc" ]
    },
    "_3DMET" : {
      "commonName" : "3DMET",
      "homepage" : "http://www.3dmet.dna.affrc.go.jp/",
      "registryIdentifier" : " MIR:00000066",
      "uris" : [ "urn:miriam:3dmet", "http://identifiers.org/3dmet/", "http://identifiers.org/3dmet", "https://identifiers.org/3dmet/", "https://identifiers.org/3dmet" ]
    }
  },
  "unitTypes" : [ {
    "name" : "ampere",
    "id" : "AMPERE"
  }, {
    "name" : "avogadro",
    "id" : "AVOGADRO"
  }, {
    "name" : "becquerel",
    "id" : "BECQUEREL"
  }, {
    "name" : "candela",
    "id" : "CANDELA"
  }, {
    "name" : "coulumb",
    "id" : "COULUMB"
  }, {
    "name" : "dimensionless",
    "id" : "DIMENSIONLESS"
  }, {
    "name" : "farad",
    "id" : "FARAD"
  }, {
    "name" : "gram",
    "id" : "GRAM"
  }, {
    "name" : "gray",
    "id" : "GRAY"
  }, {
    "name" : "henry",
    "id" : "HENRY"
  }, {
    "name" : "hertz",
    "id" : "HERTZ"
  }, {
    "name" : "item",
    "id" : "ITEM"
  }, {
    "name" : "joule",
    "id" : "JOULE"
  }, {
    "name" : "katal",
    "id" : "KATAL"
  }, {
    "name" : "kelvin",
    "id" : "KELVIN"
  }, {
    "name" : "kilogram",
    "id" : "KILOGRAM"
  }, {
    "name" : "litre",
    "id" : "LITRE"
  }, {
    "name" : "lumen",
    "id" : "LUMEN"
  }, {
    "name" : "lux",
    "id" : "LUX"
  }, {
    "name" : "metre",
    "id" : "METRE"
  }, {
    "name" : "mole",
    "id" : "MOLE"
  }, {
    "name" : "newton",
    "id" : "NEWTON"
  }, {
    "name" : "ohm",
    "id" : "OHM"
  }, {
    "name" : "pascal",
    "id" : "PASCAL"
  }, {
    "name" : "radian",
    "id" : "RADIAN"
  }, {
    "name" : "second",
    "id" : "SECOND"
  }, {
    "name" : "siemens",
    "id" : "SIEMENS"
  }, {
    "name" : "sievert",
    "id" : "SIEVERT"
  }, {
    "name" : "steradian",
    "id" : "STERADIAN"
  }, {
    "name" : "tesla",
    "id" : "TESLA"
  }, {
    "name" : "volt",
    "id" : "VOLT"
  }, {
    "name" : "watt",
    "id" : "WATT"
  }, {
    "name" : "weber",
    "id" : "WEBER"
  } ],
  "modificationStateTypes" : {
    "ACETYLATED" : {
      "commonName" : "acetylated",
      "abbreviation" : "Ac"
    },
    "DONT_CARE" : {
      "commonName" : "unspecified",
      "abbreviation" : "*"
    },
    "EMPTY" : {
      "commonName" : "empty",
      "abbreviation" : ""
    },
    "GLYCOSYLATED" : {
      "commonName" : "glycosylated",
      "abbreviation" : "G"
    },
    "HYDROXYLATED" : {
      "commonName" : "hydroxylated",
      "abbreviation" : "OH"
    },
    "METHYLATED" : {
      "commonName" : "methylated",
      "abbreviation" : "Me"
    },
    "MYRISTOYLATED" : {
      "commonName" : "myristoylated",
      "abbreviation" : "My"
    },
    "PALMYTOYLATED" : {
      "commonName" : "palmytoylated",
      "abbreviation" : "Pa"
    },
    "PHOSPHORYLATED" : {
      "commonName" : "phosphorylated",
      "abbreviation" : "P"
    },
    "PRENYLATED" : {
      "commonName" : "prenylated",
      "abbreviation" : "Pr"
    },
    "PROTONATED" : {
      "commonName" : "protonated",
      "abbreviation" : "H"
    },
    "SULFATED" : {
      "commonName" : "sulfated",
      "abbreviation" : "S"
    },
    "UBIQUITINATED" : {
      "commonName" : "ubiquitinated",
      "abbreviation" : "Ub"
    },
    "UNKNOWN" : {
      "commonName" : "unknown",
      "abbreviation" : "?"
    }
  },
  "privilegeTypes" : {
    "IS_ADMIN" : {
      "commonName" : "Admin",
      "objectType" : null,
      "valueType" : "boolean"
    },
    "IS_CURATOR" : {
      "commonName" : "Curator",
      "objectType" : null,
      "valueType" : "boolean"
    },
    "READ_PROJECT" : {
      "commonName" : "View project",
      "objectType" : "Project",
      "valueType" : "boolean"
    }
  },
  "version" : "Unknown",
  "buildDate" : "Unknown",
  "gitHash" : "Unknown",
  "annotators" : [ {
    "className" : "lcsb.mapviewer.annotation.services.annotators.PdbAnnotator",
    "name" : "Protein Data Bank",
    "description" : "",
    "url" : "http://www.pdbe.org/",
    "elementClassNames" : [ "lcsb.mapviewer.model.map.species.Protein", "lcsb.mapviewer.model.map.species.Rna", "lcsb.mapviewer.model.map.species.Gene" ],
    "parameters" : [ {
      "field" : null,
      "annotation_type" : "UNIPROT",
      "order" : 0,
      "type" : "INPUT"
    }, {
      "field" : null,
      "annotation_type" : "PDB",
      "order" : 1,
      "type" : "OUTPUT"
    } ]
  }, {
    "className" : "lcsb.mapviewer.annotation.services.annotators.ReconAnnotator",
    "name" : "Recon annotator",
    "description" : "",
    "url" : "https://www.vmh.life/",
    "elementClassNames" : [ "lcsb.mapviewer.model.map.species.Chemical", "lcsb.mapviewer.model.map.reaction.Reaction" ],
    "parameters" : [ {
      "field" : "ABBREVIATION",
      "annotation_type" : "VMH_METABOLITE",
      "order" : 0,
      "type" : "INPUT"
    }, {
      "field" : "NAME",
      "annotation_type" : "VMH_METABOLITE",
      "order" : 1,
      "type" : "INPUT"
    }, {
      "field" : null,
      "annotation_type" : "VMH_METABOLITE",
      "order" : 2,
      "type" : "INPUT"
    }, {
      "field" : null,
      "annotation_type" : "EC",
      "order" : 3,
      "type" : "OUTPUT"
    }, {
      "field" : null,
      "annotation_type" : "CHEBI",
      "order" : 4,
      "type" : "OUTPUT"
    }, {
      "field" : null,
      "annotation_type" : "KEGG_COMPOUND",
      "order" : 5,
      "type" : "OUTPUT"
    }, {
      "field" : null,
      "annotation_type" : "KEGG_REACTION",
      "order" : 6,
      "type" : "OUTPUT"
    }, {
      "field" : null,
      "annotation_type" : "KEGG_ORTHOLOGY",
      "order" : 7,
      "type" : "OUTPUT"
    }, {
      "field" : null,
      "annotation_type" : "PUBCHEM",
      "order" : 8,
      "type" : "OUTPUT"
    }, {
      "field" : null,
      "annotation_type" : "HMDB",
      "order" : 9,
      "type" : "OUTPUT"
    }, {
      "field" : null,
      "annotation_type" : "INCHI",
      "order" : 10,
      "type" : "OUTPUT"
    }, {
      "field" : null,
      "annotation_type" : "INCHIKEY",
      "order" : 11,
      "type" : "OUTPUT"
    }, {
      "field" : null,
      "annotation_type" : "COG",
      "order" : 12,
      "type" : "OUTPUT"
    }, {
      "field" : null,
      "annotation_type" : "VMH_METABOLITE",
      "order" : 13,
      "type" : "OUTPUT"
    }, {
      "field" : null,
      "annotation_type" : "VMH_REACTION",
      "order" : 14,
      "type" : "OUTPUT"
    }, {
      "field" : null,
      "annotation_type" : "CHEMSPIDER",
      "order" : 15,
      "type" : "OUTPUT"
    }, {
      "field" : null,
      "annotation_type" : "WIKIPEDIA",
      "order" : 16,
      "type" : "OUTPUT"
    }, {
      "field" : null,
      "annotation_type" : "CAS",
      "order" : 17,
      "type" : "OUTPUT"
    }, {
      "field" : null,
      "annotation_type" : "CHEMBL_COMPOUND",
      "order" : 18,
      "type" : "OUTPUT"
    }, {
      "field" : null,
      "annotation_type" : "MESH_2012",
      "order" : 19,
      "type" : "OUTPUT"
    }, {
      "field" : null,
      "annotation_type" : "RHEA",
      "order" : 20,
      "type" : "OUTPUT"
    }, {
      "field" : "ABBREVIATION",
      "annotation_type" : null,
      "order" : 21,
      "type" : "OUTPUT"
    }, {
      "field" : "DESCRIPTION",
      "annotation_type" : null,
      "order" : 22,
      "type" : "OUTPUT"
    }, {
      "field" : "FORMULA",
      "annotation_type" : null,
      "order" : 23,
      "type" : "OUTPUT"
    }, {
      "field" : "MCS",
      "annotation_type" : null,
      "order" : 24,
      "type" : "OUTPUT"
    }, {
      "field" : "CHARGE",
      "annotation_type" : null,
      "order" : 25,
      "type" : "OUTPUT"
    }, {
      "field" : "SUBSYSTEM",
      "annotation_type" : null,
      "order" : 26,
      "type" : "OUTPUT"
    }, {
      "field" : "SYNONYMS",
      "annotation_type" : null,
      "order" : 27,
      "type" : "OUTPUT"
    }, {
      "field" : "SMILE",
      "annotation_type" : null,
      "order" : 28,
      "type" : "OUTPUT"
    } ]
  }, {
    "className" : "lcsb.mapviewer.annotation.services.annotators.UniprotAnnotator",
    "name" : "Uniprot",
    "description" : "",
    "url" : "http://www.uniprot.org/",
    "elementClassNames" : [ "lcsb.mapviewer.model.map.species.Protein", "lcsb.mapviewer.model.map.species.Gene", "lcsb.mapviewer.model.map.species.Rna" ],
    "parameters" : [ {
      "field" : null,
      "annotation_type" : "UNIPROT",
      "order" : 0,
      "type" : "INPUT"
    }, {
      "field" : "NAME",
      "annotation_type" : "UNIPROT",
      "order" : 1,
      "type" : "INPUT"
    }, {
      "field" : null,
      "annotation_type" : "HGNC_SYMBOL",
      "order" : 2,
      "type" : "OUTPUT"
    }, {
      "field" : null,
      "annotation_type" : "UNIPROT",
      "order" : 3,
      "type" : "OUTPUT"
    }, {
      "field" : null,
      "annotation_type" : "EC",
      "order" : 4,
      "type" : "OUTPUT"
    }, {
      "field" : null,
      "annotation_type" : "STRING",
      "order" : 5,
      "type" : "OUTPUT"
    }, {
      "field" : null,
      "annotation_type" : "ENTREZ",
      "order" : 6,
      "type" : "OUTPUT"
    } ]
  }, {
    "className" : "lcsb.mapviewer.annotation.services.annotators.BrendaAnnotator",
    "name" : "BRENDA",
    "description" : "",
    "url" : "http://www.brenda-enzymes.org",
    "elementClassNames" : [ "lcsb.mapviewer.model.map.species.Protein", "lcsb.mapviewer.model.map.species.Gene", "lcsb.mapviewer.model.map.species.Rna" ],
    "parameters" : [ {
      "field" : null,
      "annotation_type" : "TAIR_LOCUS",
      "order" : 0,
      "type" : "INPUT"
    }, {
      "field" : null,
      "annotation_type" : "UNIPROT",
      "order" : 1,
      "type" : "INPUT"
    }, {
      "field" : null,
      "annotation_type" : "BRENDA",
      "order" : 2,
      "type" : "OUTPUT"
    } ]
  }, {
    "className" : "lcsb.mapviewer.annotation.services.annotators.CazyAnnotator",
    "name" : "CAZy",
    "description" : "",
    "url" : "http://commonchemistry.org",
    "elementClassNames" : [ "lcsb.mapviewer.model.map.species.Protein", "lcsb.mapviewer.model.map.species.Gene", "lcsb.mapviewer.model.map.species.Rna" ],
    "parameters" : [ {
      "field" : null,
      "annotation_type" : "TAIR_LOCUS",
      "order" : 0,
      "type" : "INPUT"
    }, {
      "field" : null,
      "annotation_type" : "UNIPROT",
      "order" : 1,
      "type" : "INPUT"
    }, {
      "field" : null,
      "annotation_type" : "CAZY",
      "order" : 2,
      "type" : "OUTPUT"
    } ]
  }, {
    "className" : "lcsb.mapviewer.annotation.services.annotators.ChebiAnnotator",
    "name" : "Chebi",
    "description" : "",
    "url" : "http://www.ebi.ac.uk/chebi/",
    "elementClassNames" : [ "lcsb.mapviewer.model.map.species.Chemical" ],
    "parameters" : [ {
      "field" : null,
      "annotation_type" : "CHEBI",
      "order" : 0,
      "type" : "INPUT"
    }, {
      "field" : "NAME",
      "annotation_type" : null,
      "order" : 1,
      "type" : "INPUT"
    }, {
      "field" : "FULL_NAME",
      "annotation_type" : null,
      "order" : 2,
      "type" : "OUTPUT"
    }, {
      "field" : null,
      "annotation_type" : "INCHI",
      "order" : 3,
      "type" : "OUTPUT"
    }, {
      "field" : null,
      "annotation_type" : "INCHIKEY",
      "order" : 4,
      "type" : "OUTPUT"
    }, {
      "field" : null,
      "annotation_type" : "STITCH",
      "order" : 5,
      "type" : "OUTPUT"
    }, {
      "field" : "SMILE",
      "annotation_type" : null,
      "order" : 6,
      "type" : "OUTPUT"
    }, {
      "field" : "SYNONYMS",
      "annotation_type" : null,
      "order" : 7,
      "type" : "OUTPUT"
    } ]
  }, {
    "className" : "lcsb.mapviewer.annotation.services.annotators.CopyMissingCellDesignerMiriamDataAnnotator",
    "name" : "CellDesigner copy issue",
    "description" : "",
    "url" : "https://minerva.pages.uni.lu/doc/",
    "elementClassNames" : [ "lcsb.mapviewer.model.map.species.Element" ],
    "parameters" : [ {
      "field" : "NAME",
      "annotation_type" : null,
      "order" : 0,
      "type" : "INPUT"
    } ]
  }, {
    "className" : "lcsb.mapviewer.annotation.services.annotators.EnsemblAnnotator",
    "name" : "Ensembl",
    "description" : "",
    "url" : "https://www.ensembl.org/",
    "elementClassNames" : [ "lcsb.mapviewer.model.map.species.Protein", "lcsb.mapviewer.model.map.species.Rna", "lcsb.mapviewer.model.map.species.Gene" ],
    "parameters" : [ {
      "field" : null,
      "annotation_type" : "ENSEMBL",
      "order" : 0,
      "type" : "INPUT"
    }, {
      "field" : null,
      "annotation_type" : "ENTREZ",
      "order" : 1,
      "type" : "OUTPUT"
    }, {
      "field" : null,
      "annotation_type" : "HGNC",
      "order" : 2,
      "type" : "OUTPUT"
    }, {
      "field" : null,
      "annotation_type" : "HGNC_SYMBOL",
      "order" : 3,
      "type" : "OUTPUT"
    }, {
      "field" : "FULL_NAME",
      "annotation_type" : null,
      "order" : 4,
      "type" : "OUTPUT"
    }, {
      "field" : "SYMBOL",
      "annotation_type" : null,
      "order" : 5,
      "type" : "OUTPUT"
    }, {
      "field" : "SYNONYMS",
      "annotation_type" : null,
      "order" : 6,
      "type" : "OUTPUT"
    } ]
  }, {
    "className" : "lcsb.mapviewer.annotation.services.annotators.EntrezAnnotator",
    "name" : "Entrez Gene",
    "description" : "",
    "url" : "http://www.ncbi.nlm.nih.gov/gene",
    "elementClassNames" : [ "lcsb.mapviewer.model.map.species.Protein", "lcsb.mapviewer.model.map.species.Rna", "lcsb.mapviewer.model.map.species.Gene" ],
    "parameters" : [ {
      "field" : null,
      "annotation_type" : "ENTREZ",
      "order" : 0,
      "type" : "INPUT"
    }, {
      "field" : null,
      "annotation_type" : "ENSEMBL",
      "order" : 1,
      "type" : "OUTPUT"
    }, {
      "field" : null,
      "annotation_type" : "HGNC",
      "order" : 2,
      "type" : "OUTPUT"
    }, {
      "field" : "FULL_NAME",
      "annotation_type" : null,
      "order" : 3,
      "type" : "OUTPUT"
    }, {
      "field" : "DESCRIPTION",
      "annotation_type" : null,
      "order" : 4,
      "type" : "OUTPUT"
    }, {
      "field" : "SYMBOL",
      "annotation_type" : null,
      "order" : 5,
      "type" : "OUTPUT"
    }, {
      "field" : "SYNONYMS",
      "annotation_type" : null,
      "order" : 6,
      "type" : "OUTPUT"
    } ]
  }, {
    "className" : "lcsb.mapviewer.annotation.services.annotators.GoAnnotator",
    "name" : "Gene Ontology",
    "description" : "",
    "url" : "http://amigo.geneontology.org/amigo",
    "elementClassNames" : [ "lcsb.mapviewer.model.map.species.Phenotype", "lcsb.mapviewer.model.map.compartment.Compartment", "lcsb.mapviewer.model.map.species.Complex" ],
    "parameters" : [ {
      "field" : null,
      "annotation_type" : "GO",
      "order" : 0,
      "type" : "INPUT"
    }, {
      "field" : "FULL_NAME",
      "annotation_type" : null,
      "order" : 1,
      "type" : "OUTPUT"
    }, {
      "field" : "DESCRIPTION",
      "annotation_type" : null,
      "order" : 2,
      "type" : "OUTPUT"
    } ]
  }, {
    "className" : "lcsb.mapviewer.annotation.services.annotators.HgncAnnotator",
    "name" : "HGNC",
    "description" : "",
    "url" : "http://www.genenames.org",
    "elementClassNames" : [ "lcsb.mapviewer.model.map.species.Protein", "lcsb.mapviewer.model.map.species.Rna", "lcsb.mapviewer.model.map.species.Gene" ],
    "parameters" : [ {
      "field" : null,
      "annotation_type" : "HGNC_SYMBOL",
      "order" : 0,
      "type" : "INPUT"
    }, {
      "field" : null,
      "annotation_type" : "HGNC",
      "order" : 1,
      "type" : "INPUT"
    }, {
      "field" : "NAME",
      "annotation_type" : "HGNC_SYMBOL",
      "order" : 2,
      "type" : "INPUT"
    }, {
      "field" : null,
      "annotation_type" : "ENSEMBL",
      "order" : 3,
      "type" : "OUTPUT"
    }, {
      "field" : null,
      "annotation_type" : "ENTREZ",
      "order" : 4,
      "type" : "OUTPUT"
    }, {
      "field" : null,
      "annotation_type" : "HGNC",
      "order" : 5,
      "type" : "OUTPUT"
    }, {
      "field" : null,
      "annotation_type" : "HGNC_SYMBOL",
      "order" : 6,
      "type" : "OUTPUT"
    }, {
      "field" : null,
      "annotation_type" : "REFSEQ",
      "order" : 7,
      "type" : "OUTPUT"
    }, {
      "field" : null,
      "annotation_type" : "UNIPROT",
      "order" : 8,
      "type" : "OUTPUT"
    }, {
      "field" : "SYMBOL",
      "annotation_type" : null,
      "order" : 9,
      "type" : "OUTPUT"
    }, {
      "field" : "PREVIOUS_SYMBOLS",
      "annotation_type" : null,
      "order" : 10,
      "type" : "OUTPUT"
    }, {
      "field" : "SYNONYMS",
      "annotation_type" : null,
      "order" : 11,
      "type" : "OUTPUT"
    }, {
      "field" : "NAME",
      "annotation_type" : null,
      "order" : 12,
      "type" : "OUTPUT"
    }, {
      "field" : "FULL_NAME",
      "annotation_type" : null,
      "order" : 13,
      "type" : "OUTPUT"
    } ]
  }, {
    "className" : "lcsb.mapviewer.annotation.services.annotators.KeggAnnotator",
    "name" : "KEGG",
    "description" : "Annotations extracted from KEGG ENZYME Database based on species EC numbers. Annotation include relevant publications and homologous genes for given EC numbers.",
    "url" : "https://www.genome.jp/kegg/",
    "elementClassNames" : [ "lcsb.mapviewer.model.map.species.Protein", "lcsb.mapviewer.model.map.species.Gene", "lcsb.mapviewer.model.map.species.Rna" ],
    "parameters" : [ {
      "field" : null,
      "annotation_type" : "TAIR_LOCUS",
      "order" : 0,
      "type" : "INPUT"
    }, {
      "field" : null,
      "annotation_type" : "UNIPROT",
      "order" : 1,
      "type" : "INPUT"
    }, {
      "field" : null,
      "annotation_type" : "EC",
      "order" : 2,
      "type" : "INPUT"
    }, {
      "field" : null,
      "annotation_type" : "PUBMED",
      "order" : 3,
      "type" : "OUTPUT"
    }, {
      "field" : null,
      "annotation_type" : "TAIR_LOCUS",
      "order" : 4,
      "type" : "OUTPUT"
    }, {
      "type" : "CONFIG",
      "name" : "KEGG_ORGANISM_IDENTIFIER",
      "commonName" : "KEGG organism identifier",
      "inputType" : "java.lang.String",
      "description" : "Space-delimited list of organisms codes for which homologous genes (final GENE section in the KEGG enzyme record) should be imported. Currently only ATH (final Arabidopsis Thaliana) is supported.",
      "value" : "",
      "order" : 5
    } ]
  }, {
    "className" : "lcsb.mapviewer.annotation.services.annotators.TairAnnotator",
    "name" : "TAIR",
    "description" : "",
    "url" : "http://arabidopsis.org/index.jsp",
    "elementClassNames" : [ "lcsb.mapviewer.model.map.species.Protein", "lcsb.mapviewer.model.map.species.Gene", "lcsb.mapviewer.model.map.species.Rna" ],
    "parameters" : [ {
      "field" : null,
      "annotation_type" : "TAIR_LOCUS",
      "order" : 0,
      "type" : "INPUT"
    }, {
      "field" : null,
      "annotation_type" : "UNIPROT",
      "order" : 1,
      "type" : "OUTPUT"
    } ]
  } ],
  "bioEntityFields" : [ {
    "commonName" : "Abbreviation",
    "name" : "ABBREVIATION"
  }, {
    "commonName" : "Charge",
    "name" : "CHARGE"
  }, {
    "commonName" : "Description",
    "name" : "DESCRIPTION"
  }, {
    "commonName" : "Formula",
    "name" : "FORMULA"
  }, {
    "commonName" : "Full name",
    "name" : "FULL_NAME"
  }, {
    "commonName" : "Name",
    "name" : "NAME"
  }, {
    "commonName" : "Mechanical Confidence Score",
    "name" : "MCS"
  }, {
    "commonName" : "Previous Symbols",
    "name" : "PREVIOUS_SYMBOLS"
  }, {
    "commonName" : "Smile",
    "name" : "SMILE"
  }, {
    "commonName" : "Symbol",
    "name" : "SYMBOL"
  }, {
    "commonName" : "Synonyms",
    "name" : "SYNONYMS"
  }, {
    "commonName" : "Subsystem",
    "name" : "SUBSYSTEM"
  } ]
}

2. List configuration options

List configuration options.

2.1. CURL sample

$ curl 'https://minerva-service.lcsb.uni.lu/minerva/api/configuration/options/' -X GET

2.2. Response Fields

Path Type Description

[]

array<Option>

list of options

[].commonName

String

human readable name of configuration option

[].group

String

group of options where this configuration option belongs to

[].isServerSide

boolean

TRUE/FALSE - is the option responsible for server side processing or frontend

[].type

String

option type

[].value

String

value of the configuration option

[].valueType

String

type of the configuration option. Available options: ALLOW_AUTO_REGISTER, BIG_FILE_STORAGE_DIR, COOKIE_POLICY_URL, CORS_DOMAIN, CUSTOM_CSS, DEFAULT_MAP, EMAIL_ADDRESS, EMAIL_IMAP_SERVER, EMAIL_LOGIN, EMAIL_PASSWORD, EMAIL_SMTP_PORT, EMAIL_SMTP_SERVER, EMAIL_SSL_SERVER, LDAP_ADDRESS, LDAP_BASE_DN, LDAP_BIND_DN, LDAP_EMAIL_ATTRIBUTE, LDAP_FILTER, LDAP_FIRST_NAME_ATTRIBUTE, LDAP_LAST_NAME_ATTRIBUTE, LDAP_OBJECT_CLASS, LDAP_PASSWORD, LDAP_PORT, LDAP_SSL, LDAP_UID, LEFT_LOGO_IMG, LEFT_LOGO_LINK, LEFT_LOGO_TEXT, LEGEND_FILE_1, LEGEND_FILE_2, LEGEND_FILE_3, LEGEND_FILE_4, MATOMO_URL, MAX_COLOR_VAL, MINERVANET_AUTH_TOKEN, MINERVANET_URL, MINERVA_ROOT, MIN_COLOR_VAL, NEUTRAL_COLOR_VAL, ORCID_CLIENT_ID, ORCID_CLIENT_SECRET, OVERLAY_OPACITY, REQUEST_ACCOUNT_DEFAULT_CONTENT, REQUEST_ACCOUNT_DEFAULT_TITLE, REQUEST_ACCOUNT_EMAIL, REQUIRE_APPROVAL_FOR_AUTO_REGISTERED_USERS, RIGHT_LOGO_IMG, RIGHT_LOGO_LINK, RIGHT_LOGO_TEXT, SESSION_LENGTH, SIMPLE_COLOR_VAL, TERMS_OF_USE, USER_MANUAL_FILE, X_FRAME_DOMAIN

2.3. Sample Response

[ {
  "idObject" : 15,
  "type" : "DEFAULT_MAP",
  "valueType" : "STRING",
  "commonName" : "Default Project Id",
  "isServerSide" : false,
  "value" : "empty",
  "group" : "Server configuration"
}, {
  "idObject" : 25,
  "type" : "LEFT_LOGO_IMG",
  "valueType" : "URL",
  "commonName" : "Left logo icon",
  "isServerSide" : false,
  "value" : "resources/images/udl.png",
  "group" : "Legend and logo"
}, {
  "idObject" : 26,
  "type" : "LEFT_LOGO_LINK",
  "valueType" : "URL",
  "commonName" : "Left logo link (after click)",
  "isServerSide" : false,
  "value" : "http://wwwen.uni.lu/",
  "group" : "Legend and logo"
}, {
  "idObject" : 27,
  "type" : "LEFT_LOGO_TEXT",
  "valueType" : "STRING",
  "commonName" : "Left logo description",
  "isServerSide" : false,
  "value" : "University of Luxembourg",
  "group" : "Legend and logo"
}, {
  "idObject" : 28,
  "type" : "RIGHT_LOGO_IMG",
  "valueType" : "URL",
  "commonName" : "Right logo icon",
  "isServerSide" : false,
  "value" : "resources/images/lcsb.png",
  "group" : "Legend and logo"
}, {
  "idObject" : 29,
  "type" : "RIGHT_LOGO_LINK",
  "valueType" : "URL",
  "commonName" : "Right logo link (after click)",
  "isServerSide" : false,
  "value" : "http://wwwen.uni.lu/lcsb/",
  "group" : "Legend and logo"
}, {
  "idObject" : 30,
  "type" : "RIGHT_LOGO_TEXT",
  "valueType" : "STRING",
  "commonName" : "Right logo description",
  "isServerSide" : false,
  "value" : "LCSB - Luxembourg Centre for Systems Biomedicine",
  "group" : "Legend and logo"
}, {
  "idObject" : 9,
  "type" : "REQUEST_ACCOUNT_EMAIL",
  "valueType" : "EMAIL",
  "commonName" : "Email used for requesting an account",
  "isServerSide" : false,
  "value" : "",
  "group" : "Email notification details"
}, {
  "idObject" : 19,
  "type" : "X_FRAME_DOMAIN",
  "valueType" : "URL",
  "commonName" : "Domain allowed to connect via x-frame technology",
  "isServerSide" : false,
  "value" : "",
  "group" : "Server configuration"
}, {
  "idObject" : 22,
  "type" : "CORS_DOMAIN",
  "valueType" : "BOOLEAN",
  "commonName" : "Disable CORS (when disabled 'ORIGIN' http header is required)",
  "isServerSide" : false,
  "value" : "false",
  "group" : "Server configuration"
}, {
  "idObject" : 23,
  "type" : "BIG_FILE_STORAGE_DIR",
  "valueType" : "STRING",
  "commonName" : "Path to store big files",
  "isServerSide" : false,
  "value" : "minerva-big/",
  "group" : "Server configuration"
}, {
  "idObject" : 31,
  "type" : "LEGEND_FILE_1",
  "valueType" : "URL",
  "commonName" : "Legend 1 image file",
  "isServerSide" : false,
  "value" : "resources/images/legend_a.png",
  "group" : "Legend and logo"
}, {
  "idObject" : 32,
  "type" : "LEGEND_FILE_2",
  "valueType" : "URL",
  "commonName" : "Legend 2 image file",
  "isServerSide" : false,
  "value" : "resources/images/legend_b.png",
  "group" : "Legend and logo"
}, {
  "idObject" : 33,
  "type" : "LEGEND_FILE_3",
  "valueType" : "URL",
  "commonName" : "Legend 3 image file",
  "isServerSide" : false,
  "value" : "resources/images/legend_c.png",
  "group" : "Legend and logo"
}, {
  "idObject" : 34,
  "type" : "LEGEND_FILE_4",
  "valueType" : "URL",
  "commonName" : "Legend 4 image file",
  "isServerSide" : false,
  "value" : "resources/images/legend_d.png",
  "group" : "Legend and logo"
}, {
  "idObject" : 13,
  "type" : "USER_MANUAL_FILE",
  "valueType" : "URL",
  "commonName" : "User manual file",
  "isServerSide" : false,
  "value" : "resources/other/user_guide.pdf",
  "group" : "Legend and logo"
}, {
  "idObject" : 39,
  "type" : "MIN_COLOR_VAL",
  "valueType" : "COLOR",
  "commonName" : "Overlay color for negative values",
  "isServerSide" : false,
  "value" : "FF0000",
  "group" : "Overlays"
}, {
  "idObject" : 40,
  "type" : "MAX_COLOR_VAL",
  "valueType" : "COLOR",
  "commonName" : "Overlay color for positive values",
  "isServerSide" : false,
  "value" : "0000FF",
  "group" : "Overlays"
}, {
  "idObject" : 41,
  "type" : "SIMPLE_COLOR_VAL",
  "valueType" : "COLOR",
  "commonName" : "Overlay color when no values are defined",
  "isServerSide" : false,
  "value" : "00FF00",
  "group" : "Overlays"
}, {
  "idObject" : 42,
  "type" : "NEUTRAL_COLOR_VAL",
  "valueType" : "COLOR",
  "commonName" : "Overlay color for value=0",
  "isServerSide" : false,
  "value" : "FFFFFF",
  "group" : "Overlays"
}, {
  "idObject" : 43,
  "type" : "OVERLAY_OPACITY",
  "valueType" : "DOUBLE",
  "commonName" : "Opacity used when drawing data overlays (value between 0.0-1.0)",
  "isServerSide" : false,
  "value" : "0.8",
  "group" : "Overlays"
}, {
  "idObject" : 11,
  "type" : "REQUEST_ACCOUNT_DEFAULT_CONTENT",
  "valueType" : "TEXT",
  "commonName" : "Email content used for requesting an account",
  "isServerSide" : false,
  "value" : "Dear Disease map team,\nI would like to request an account in the system.\nKind regards",
  "group" : "Email notification details"
}, {
  "idObject" : 12,
  "type" : "TERMS_OF_USE",
  "valueType" : "URL",
  "commonName" : "URL of platform's Terms of Service",
  "isServerSide" : false,
  "value" : "",
  "group" : "Legend and logo"
}, {
  "idObject" : 14,
  "type" : "COOKIE_POLICY_URL",
  "valueType" : "URL",
  "commonName" : "Privacy policy (url)",
  "isServerSide" : false,
  "value" : "/minerva/default-cookie-policy.xhtml",
  "group" : "Server configuration"
}, {
  "idObject" : 1,
  "type" : "SESSION_LENGTH",
  "valueType" : "INTEGER",
  "commonName" : "Max session inactivity time (in seconds)",
  "isServerSide" : false,
  "value" : "7200",
  "group" : "Server configuration"
}, {
  "idObject" : 16,
  "type" : "MINERVA_ROOT",
  "valueType" : "URL",
  "commonName" : "Minerva root url",
  "isServerSide" : false,
  "value" : "",
  "group" : "Server configuration"
}, {
  "idObject" : 10,
  "type" : "REQUEST_ACCOUNT_DEFAULT_TITLE",
  "valueType" : "STRING",
  "commonName" : "Email title used for requesting an account",
  "isServerSide" : false,
  "value" : "MINERVA account request",
  "group" : "Email notification details"
}, {
  "idObject" : 35,
  "type" : "CUSTOM_CSS",
  "valueType" : "TEXT",
  "commonName" : "Custom CSS",
  "isServerSide" : false,
  "value" : "",
  "group" : "Legend and logo"
}, {
  "idObject" : 83,
  "type" : "ORCID_CLIENT_ID",
  "valueType" : "TEXT",
  "commonName" : "Orcid Client ID",
  "isServerSide" : false,
  "value" : "",
  "group" : "OAuth conifguration"
}, {
  "idObject" : 84,
  "type" : "ORCID_CLIENT_SECRET",
  "valueType" : "PASSWORD",
  "commonName" : "Orcid Client Secret",
  "isServerSide" : false,
  "group" : "OAuth conifguration"
}, {
  "idObject" : 20,
  "type" : "ALLOW_AUTO_REGISTER",
  "valueType" : "BOOLEAN",
  "commonName" : "Allow users to create accounts",
  "isServerSide" : false,
  "value" : "false",
  "group" : "Server configuration"
}, {
  "idObject" : 21,
  "type" : "REQUIRE_APPROVAL_FOR_AUTO_REGISTERED_USERS",
  "valueType" : "BOOLEAN",
  "commonName" : "Require admin approval for auto-registered accounts",
  "isServerSide" : false,
  "value" : "true",
  "group" : "Server configuration"
}, {
  "idObject" : 91,
  "type" : "MATOMO_URL",
  "valueType" : "URL",
  "commonName" : "Matomo tracking url (for example: https://cdn.matomo.cloud/atcomp.matomo.cloud/container_d9VKcbPg_dev_d48ac09b17cfa365367b6ce.js)",
  "isServerSide" : false,
  "value" : "",
  "group" : "Server configuration"
} ]

3. Modify configuration option

Modify configuration option.

3.1. CURL sample

$ curl 'https://minerva-service.lcsb.uni.lu/minerva/api/configuration/options/EMAIL_SMTP_PORT' -X PATCH \
    -d '{"option":{"value":"25"}}' \
    --cookie "MINERVA_AUTH_TOKEN=xxxxxxxx" \
    -H 'Content-Type: application/json'

3.2. Path Parameters

Table 1. /minerva/api/configuration/options/{option}
Parameter Description

option

option type

3.3. Request Fields

Path Type Description

option.value

String

new option value

3.4. Response Fields

Path Type Description

commonName

String

human readable name of configuration option

group

String

group of options where this configuration option belongs to

isServerSide

boolean

TRUE/FALSE - is the option responsible for server side processing or frontend

type

String

option type

value

String

value of the configuration option

valueType

String

type of the configuration option. Available options: ALLOW_AUTO_REGISTER, BIG_FILE_STORAGE_DIR, COOKIE_POLICY_URL, CORS_DOMAIN, CUSTOM_CSS, DEFAULT_MAP, EMAIL_ADDRESS, EMAIL_IMAP_SERVER, EMAIL_LOGIN, EMAIL_PASSWORD, EMAIL_SMTP_PORT, EMAIL_SMTP_SERVER, EMAIL_SSL_SERVER, LDAP_ADDRESS, LDAP_BASE_DN, LDAP_BIND_DN, LDAP_EMAIL_ATTRIBUTE, LDAP_FILTER, LDAP_FIRST_NAME_ATTRIBUTE, LDAP_LAST_NAME_ATTRIBUTE, LDAP_OBJECT_CLASS, LDAP_PASSWORD, LDAP_PORT, LDAP_SSL, LDAP_UID, LEFT_LOGO_IMG, LEFT_LOGO_LINK, LEFT_LOGO_TEXT, LEGEND_FILE_1, LEGEND_FILE_2, LEGEND_FILE_3, LEGEND_FILE_4, MATOMO_URL, MAX_COLOR_VAL, MINERVANET_AUTH_TOKEN, MINERVANET_URL, MINERVA_ROOT, MIN_COLOR_VAL, NEUTRAL_COLOR_VAL, ORCID_CLIENT_ID, ORCID_CLIENT_SECRET, OVERLAY_OPACITY, REQUEST_ACCOUNT_DEFAULT_CONTENT, REQUEST_ACCOUNT_DEFAULT_TITLE, REQUEST_ACCOUNT_EMAIL, REQUIRE_APPROVAL_FOR_AUTO_REGISTERED_USERS, RIGHT_LOGO_IMG, RIGHT_LOGO_LINK, RIGHT_LOGO_TEXT, SESSION_LENGTH, SIMPLE_COLOR_VAL, TERMS_OF_USE, USER_MANUAL_FILE, X_FRAME_DOMAIN

3.5. Sample Response

{
  "idObject" : 8,
  "type" : "EMAIL_SMTP_PORT",
  "valueType" : "INTEGER",
  "commonName" : "SMTP port",
  "isServerSide" : true,
  "value" : "25",
  "group" : "Email notification details"
}